convert the following into For loop;
while(true)
System.out.print('*');
(in java )
PLEASE ANSWER FAST...
WILL MARK BRAINLIEST**
Answers
Answered by
0
Answer:
While loop in java syntax is as follows.
while
(expression)
{// statements}
The expression for while loop must return boolean value, otherwise it will throw compile time error.
Similar questions