Advertisements
Advertisements
Question
Rewrite the program by 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;
}
Answer in Brief
Solution
int a = 1, b = 0, c;
System.out.println("The numbers are:");
while (a <= 10)
{
c = b * b;
System.out.print(c);
a = a + 1;
b = b + 1;
}
shaalaa.com
Is there an error in this question or solution?