English

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

Question

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;
}
Answer in Brief

Solution

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
  Is there an error in this question or solution?
2022-2023 (March) Official
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×