मराठी

Write a Program to Accept a Number and Check and Display Whether It is a Spy Number Or Not. (A Number is Spy If the Sum of Its Digits Equals the Product of Its Digits.) - Computer Applications

Advertisements
Advertisements

प्रश्न

Write a program to accept a number and check and display whether it is a spy number or not. (A number is spy if the sum of its digits equals the product of its digits.)

Example: consider the number 1124,
Sum of the digits = l + l+ 2 + 4 = 8
Product of the digits = 1×1 x2x4 = 8

थोडक्यात उत्तर

उत्तर १

class Spy {
public static void main(int n) {
int sum = 0;
int multiple = 1;
int a;
int p = n;
// a stores each digit extracted and p creates a backup of input.
while(n ! = 0) {
a = n % 10; ,
sum = sum + a;
multiple = multiple * a;
n = n/10;
}
System.out.println(“The sum of ” +p +” is ”+sum);
System.out.println(“The product of “+p +” is ” + multiple);
if(sum = = multiple) {
System.out.println(“Aha, ” + “It is a Spy Number Where Sum = Product”);
}
else {
System.out.println(” It is NOT a Spy Number Where Sum ft Product”);
}
}
}
shaalaa.com

उत्तर २

import java.util.*;
public class Q14
{ public static void main(String args[])
{Scanner in = new Scanner(System.in);
int n, prd = 1, sum = 0, d;
System.out.printIn("Enter a number");
n = in.nextInt();
do
{ d = n % 10;
sum += d;
prd *= d;
n = n / 10;
}
while (n > 0);

if (prd == sum)
System.out.println("It is a spy number");
else
System.out.printIn("It is not a Spy number");
}
}
shaalaa.com
Objects as Instances of a Class
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1.09: Iterative Constructs in Java - EXERCISES [पृष्ठ १२६]

APPEARS IN

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

Englishहिंदीमराठी


      Forgot password?
Use app×