Ask Question
Today, 05:45

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.

+4
Answers (1)
  1. Today, 09:41
    0
    Do {

    System. out. print ("*");

    k++;

    } while (k < 53);
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “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 ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers