Given an int variable k that has already been declared, use a while loop to print a single line consisting of 88 asterisks. Use no variables other than k.
k=1;
while (k<=88) {
System. out. print ('*');
k++;
}
System. out. println (); T/F
+2
Answers (1)
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 while loop to print a single line consisting of 88 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.
Home » Computers & Technology » Given an int variable k that has already been declared, use a while loop to print a single line consisting of 88 asterisks. Use no variables other than k. k=1; while (k<=88) { System. out. print ('*'); k++; } System. out. println (); T/F