मराठी

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

प्रश्न

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); 
थोडक्यात उत्तर

उत्तर

int d = 5; 
for (int i = 1; i <= 5; i++) 
{d = d * 2; 
System.out.println(d); 
} 
shaalaa.com
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1.09: Iterative Constructs in Java - EXERCISES [पृष्ठ १२३]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 1.09 Iterative Constructs in Java
EXERCISES | Q IV. 1 | पृष्ठ १२३
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×