Create a variable called whileInt of the type int.
Create a while loop, that shows the numbers from 0 to 2, in the output window.
Create a variable called doWhileInt1 of the type int
create a do-while loop that shows the numbers from 0 to 2 in the output window
Create a variable called doWhileInt2 of the type int
create a do-while loop that is executed, even though the evaluation returns false
Create a variable called forInt1 of the type int
create a for loop that shows the numbers from 0 to 2 in the output window
Create a variable called forInt2 of the type int
create a for loop that shows the numbers from 10, 20, 30 ... 100 in the output window