vote up 2 vote down star
2

I was watching one of those incredibly retarded tv quiz money scams last night as I was reading reddit and they posed the question:

if you wrote down all the numbers between 32 to 287 how may times would you write down the number 6?

So I did some quick maths in my head (there are 11 sixes in each 100, there are two hundreds in between the two numbers and then there are six more = 22 + 6 = 28). The first caller rings up and says 28.

I am not great at maths in my head but I could think of a pretty easy for loop that would figure it out, but there is no way I was going to go through the hassle of installing an IDE on my home machine just to write five lines of code. My question:

Is there a website where I can write simple algorithms like this and compile them and get results all in-browser without having to install any crap or jump through any hoops?

flag

1  
Aren't there 20 sixes in each 100? 6, 16, 26, 36, 46, 56, 60 - 69, 76, 86 and 96? – Patrick McDonald Jun 12 at 9:00
indeed; that's what I was missing :) – edzillion Jun 12 at 9:09
1  
I know this isn't what you were asking, but there must be 40 from 32 to 231, plus another 16, giving 56, but I would not be confident enough to ring up the show with that answer :) – Patrick McDonald Jun 12 at 9:12
Did the caller saying "28" win this quiz?? – divo Jun 12 at 11:26
nope, but I did wonder because I remember watching an UK channel a few years ago, at the height of the phone quiz scandal, and someone definitely rang up saying the correct answer and was rejected :/ – edzillion Jun 12 at 11:53

8 Answers

vote up 3 vote down check

A quick google found http://www.coderun.com/. It apparently supports .NET, PHP and AJAX.

EDIT:

Supports IE7 and Firefox (i.e. none of the browsers installed on my current machine)

link|flag
vote up 0 vote down

There's an online "live demo" for the LUA language here: http://www.lua.org/demo.html

link|flag
vote up 1 vote down

This answer is going to be language specific. For the best answer, javascript would work well. Since it already runs in the browser, writing an interpreter that runs in the browser is a piece of cake. Just google for "javascript interpreter" and you'll get a bunch of hits.

link|flag
vote up 4 vote down

There is also web based interpreters for Python:

http://try-python.mired.org/

And for Ruby:

http://tryruby.hobix.com/

Example for the Python online interpreter:

Python 2.5.2 (r252:60911, May 29 2008, 09:50:36) [C] on sunos5
Type "help", "copyright", "credits", or "license" for more information.
>>> total=0
>>> for a in range(32,288):
...    total = total + str(a).count('6')
... 
>>> total
56
link|flag
The reason range(32,288) was used is because the built-in Python range() function returns a list of integers one less than the stop argument. Not that it would make a difference here of course, 287 contains no sixes :) – Andre Miller Jun 12 at 15:41
vote up 0 vote down

There is an online Ruby interpreter at: http://tryruby.hobix.com/

It has a pretty good tutorial too to help you learn Ruby as you go.

link|flag
vote up 0 vote down

If you can write the algorithms in Javascript, use Project Bespin.

Bespin is a Mozilla Labs experiment that proposes an open, extensible web-based framework for code editing that aims to increase developer productivity, enable compelling user experiences, and promote the use of open standards.

link|flag
vote up 0 vote down

There's a whole bunch of BASIC emulators!

http://www.vavasour.ca/jeff/level1/simulator.html

Great for some instant

10 PRINT "HELLO"
20 GOTO 10
link|flag
vote up 1 vote down

Code Pad supports a lot of programming languages, is free and doesn't require registration.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.