write a looping statement that allows loop body execution 55 times
Answers
Answered by
7
Answer:
public class main
{
public static void main(String args[])
{
int a=55;
for(int i=1; i<=a; i++)
System.out.println("Grand theft Auto: SA");
}
}
Explanation:
The above program will execute 55 times, just copy this code and run.
Pls mark my answer as Brainliest and also follow me for more.
THANK YOU
Answered by
0
while loop is executed once before the condition is checked. Its syntax is: do { // body of loop; } while (condition); ... If the condition evaluates to true , the body of the loop inside the do statement is executed again.
Similar questions