हिंदी

Give the output of the following program segment: int n = 4279; int d; while(n>0) (d=n%10; System.out.println(d); n=n/100; } - Computer Applications

Advertisements
Advertisements

प्रश्न

Give the output of the following program segment:

int n = 4279; int d;
while(n>0)
(d=n%10;
System.out.println(d);
n=n/100;
}
संक्षेप में उत्तर

उत्तर

Output:

9
2

Explanation:

The while loop carries on until the value of n is >0 and decreases n every time by 1/100 th. In each iteration, it prints the last digit of the number by a %10 operation.

shaalaa.com
Introduction of Conditional Statements in Java
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2022-2023 (March) Official
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×