Computer Science, asked by vismaypradeep42, 11 months ago

what instruction would I use if I wanted a loop to execute 10 times.​

Answers

Answered by ranisrinivas1974
4

public class loop

{

int i,j;

public void method()

{

for (i=1;i<=10;i++)

{

System.out.println("The loop which you want to print");

}

}

}

Explanation:

Similar questions