Answers for "Given an int variable k that has already been declared, use a do...while loop to print a single line consisting of 53 asterisks. Use no variables other than k."

0

Given an int variable k that has already been declared, use a do...while loop to print a single line consisting of 53 asterisks. Use no variables other than k.

k = 0;
do{
   System.out.print("*");
   k++;
}while (k < 53);
Posted by: Guest on October-15-2020

Code answers related to "Given an int variable k that has already been declared, use a do...while loop to print a single line consisting of 53 asterisks. Use no variables other than k."

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language