Ask Question
21 June, 20: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. 21 June, 22:18
    0
    Do {

    System. out. print ("*");

    k++;

    } while (k < 53);
Know the Answer?
Not Sure About the Answer?
Get 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 there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers