"Hi, Amigo!"
"I heard that you've learned about loops. I'll give you a couple of tasks."
4
Task
New Java Syntax,
level 4,
lesson 4
Locked
10 numbers
Display the numbers from 1 to 10 using a while loop. Each value should be on a new line.
4
Task
New Java Syntax,
level 4,
lesson 4
Locked
From 10 to 1
Display the numbers from 10 to 1 using a while loop. Each value should be on a new line.
4
Task
New Java Syntax,
level 4,
lesson 4
Locked
You can't have too much of a good thing
Use the keyboard to enter a string and a number N greater than 0.
Use a while loop to display the string N times. Each value should be on a new line.
Example input:
abc
2
Example output:
abc
abc
4
Task
New Java Syntax,
level 4,
lesson 4
Locked
Seeing dollars in your future
Use a while loop to display a 10x10 square of dollar signs.
Don't separate the symbols in each line.
Example output:
$$$$$$
$$$$$
$$$$$
$$$$$
$$$$$
$$$$$
$$$$$
$$$$$
$$$$$
$$$$$
GO TO FULL VERSION