Given an Integer variable n that has already been declared and initialized to a positive value, use a While loop to print a single line consisting of n asterisks. Use no variables other than n.
LANGUAGE: Visual Basic
CHALLENGE:
Given an Integer variable n that has already been declared and initialized to a positive value,use a While loop to print a single line consisting of n asterisks.
Use no variables other than n.
SOLUTION:
Do While (n > 0) Console.Write("*") n -= 1 Loop