Computer Science, asked by MeghaLakshmiB, 9 months ago

write the following using for loop:
while (true)
System.out.print("*") ;​

Answers

Answered by IAmAMissingColon
0

This Loop seems to be infinite

you can try this

for(i=1;i>0;i++)

{

System.out.print("*");

}

Similar questions