Other than a few exceptional cases, the programming language doesn't make much difference.
Currently the easiest way for a user to run your programs is to write them in JavaScript and post them on a web page.
In just about every web browser, as soon as the user opens that web page, the program starts to run -- there's nothing else for a user to "download" or "install".
The second-easiest (for the user) is, as Justin Ardini mentioned, make it a web app -- just about every language you've ever heard about can make CGI scripts.
The third-easiest is to post it as a Java web applet. Most web browsers can run it directly, but you might have a few users that can't run it until they upgrade.
(I've heard that Java web applets can be written in a dozen different languages, including a dialect of Python, which target the JVM -- users can't tell the difference).
I know lots of people who don't mind running one of the above 3 kinds of programs, but are very, very reluctant to install new software on their computers, in an attempt to avoid viruses and malware.
Also, you'll probably run into users who use Macintosh, Windows, or Linux computers -- the above techniques will work on any of them, but if you use one of the below techniques, no matter which one you compile your program for, it won't work on the other two.
The next-easiest is to make a single all-in-one executable that people can download, double-click, and run.
There are many programming languages that have development tools that can do this -- C, C++, Delphi, etc. -- and you user probably won't be able to tell the difference.
The next-easiest is to make a single all-in-one package or installer that people can double-click to install your application; and then later they can actually run it.
Many development environments have a way to bundle up whatever it needs into a single installer.
If your development environment doesn't have one built in, or if you are dissatisfied with the default installer, you might want to check out the question "Seeking an open source solution for a windows installer".