हिंदी

Write a program to input a number. Display the product of the successors of even digits of the number entered by user. Input: 2745 Output: 15 - Computer Applications

Advertisements
Advertisements

प्रश्न

Write a program to input a number. Display the product of the successors of even digits of the number entered by user. 

Input: 2745 
Output: 15

[Hint: The even digits are: 2 and 4
The product of successor of even digits is: 3 * 5 = 15]

संक्षेप में उत्तर

उत्तर

public class Q5 
{ public static void sampleMethod(int n) 
{ int d, pdt = 1; 
while (n > 0) 
{
d = n % 10;
if (d % 2 == 0) 
{ d++; // d has successor of even number 
pdt = pdt * d; 
}
n = n / 10; 
} 
System.out.println(pdt); 
}}
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 VI. 5. | पृष्ठ १२४
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×