Computer Science, asked by shanu78701, 3 months ago

Rewrite the program using while loop:
int a,b=0,c;
System.out.println("The numbers are:");
for(a=1;a<=10;a++)
{
c=b*b;
System.out.print(c);
b=b+1;
}

Answers

Answered by akong4210
0

Answer:

The numbers are:

0149162536496481

Similar questions