English

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; } - Computer Applications

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?
Chapter 1.09: Iterative Constructs in Java - Review Insight [Page 120]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 1.09 Iterative Constructs in Java
Review Insight | Q 7. | Page 120
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×