Computer Science, asked by karanpol9972, 8 months ago

help me out fast!!!
Convert following into for loop.
int a=10;
while(a<=100)
{
System.out.println(a);
a++;
}​

Answers

Answered by AdityaSingh2167
0

Answer:

for(int a = 10; a<=100; a++)

{

system.out.println(a);

}

Similar questions