Ask Question
12 June, 21:04

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.

+5
Answers (1)
  1. 12 June, 21:31
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers