Can you check my code and make sure it is correct.
I want the user to input a number and then print hello world + i that many times.
In Perl I am having a problem where I can't <br> to the next line after each hello world.
And the javascript seems fine
RUBY
#!/usr/bin/ruby
puts "Enter A Number?"
repeatHello = gets
i = 0
begin
puts "hello world! #{i}"
i += 1
end while i < repeatHello
Javascript
var repeatHello = prompt("Please, enter a number");
var counter = 0;
if (counter < repeatHello)
{
counter = (counter + 1);
document.write("Hello World!" + counter);
}
Perl
print "Please, enter a Number";
$repeatHello = <> ;
$i = 0;
do {
print "Hello World + $i";
$i++;
} until ($i > $repeatHello);
rosetta-stone? – missingfaktor May 22 '11 at 6:15