20679

Given  an int  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.

while (n != 0){
   System.out.print("*");
   n = n - 1;

}

Comments

Popular posts from this blog

20689

20681

21000