मराठी

Define a class to accept a number and check whether it is a SUPERSPY number or not. A number is called SUPERSPY if the sum of the digits equals the number of the digits. - Computer Applications

Advertisements
Advertisements

प्रश्न

Define a class to accept a number and check whether it is a SUPERSPY number or not. A number is called SUPERSPY if the sum of the digits equals the number of the digits.

Example1:

Input: 1021

Output: SUPERSPY number [SUM OF THE DIGITS = 1+0+2+1 = 4, NUMBER OF DIGITS = 4]

Example2:

Input: 125

Output: Not an SUPERSPY number [1+2+5 is not equal to 3]

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

उत्तर

class superspy
{
   int n;
   superspy(int x)
   {
     n=x
   }
   boolean superspy()
   {
   int d,s=0,c=0;
   while(n>0)
   {
     d=n%10;
     s=s+d;
     c++;
     n=n/10;
   }
   if(s==c)
   return true;
   else
   return false;
 }
}
shaalaa.com
Introduction of Iterative Constructs in Java
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
2024-2025 (April) Specimen Paper
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×