English

Rewrite the following program Using for loop: int i = 1; int d = 5; do { d = d * 2; System.out.println(d); i++; } while (i <= 5); - Computer Applications

Advertisements
Advertisements

Question

Rewrite the following program Using for loop:

int i = 1; 
int d = 5; 
do 
 { 
 d = d * 2; 
 System.out.println(d); 
 i++; 
 } 
while (i <= 5); 
Answer in Brief

Solution

int d = 5; 
for (int i = 1; i <= 5; i++) 
{d = d * 2; 
System.out.println(d); 
} 
shaalaa.com
  Is there an error in this question or solution?
Chapter 1.09: Iterative Constructs in Java - EXERCISES [Page 123]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 1.09 Iterative Constructs in Java
EXERCISES | Q IV. 1 | Page 123
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×