हिंदी

A number is said to be Armstrong if the sum of cube of its digits is equal to the same number.  For example, 153 = 13 + 53 + 33 Hence, 153 is an Armstrong number. - Computer Applications

Advertisements
Advertisements

प्रश्न

A number is said to be Armstrong if the sum of cube of its digits is equal to the same number. 

For example, 153 = 13 + 53 + 33
Hence, 153 is an Armstrong number.

A program using a class is designed below to check and display whether a number 'num' is an Armstrong number or not. There are some places in the program left blank marked with ?1?, ?2?, ?3? and ?4? to be filled with suitable condition/expression.

class Armstrong 
{ 
private int num; 
Armstrong(int n) 
{ 
   num = n; 
}
boolean check() 
( 
   int nm= num; 
   while(....... ?1? ........) 
   { 
     digit = nm % 10; 
     sum = sum + ......... ?2? .......; 
     nm = ........ ?3? .........; 
}
if (sum == num) 
     return(true); 
   else 
     return(false) 
   }
void display() 
{ 
     boolean ch = check(); 
     if (ch == ....... ?4? .......) 
     System.out.println("Number is Armstrong"); 
     Else 
     System.out.println("Number is not Armstrong");
}

Based on the above discussion, answer the following questions:

  1. What will be filled in place of ?1?
  2. What will be filled in place of ?2?
  3. What will be filled in place of ?3?
  4. What will be filled in place of ?4?
मामले का अध्ययन

उत्तर

  1. nm > 0
  2. Mth.pow(digit, 3)
  3. nm / 10
  4. true

The complete program is as follows:

class Armstrong { 
    private int num; 
    Armstrong(int n) {
         num = n; 
    boolean check() { 
        int nm = num; 
        while (nm > 0) {
            digit = nm % 10; 
            sum = sum + Math.pow(digit , 3);
            nm = nm / 10 ;  
        }
        if (sum == num) 
            return(true); 
        else 
            return(false); 
    } 
    void display() {
        boolean ch = check(); 
        if(ch == true ) 
            System.out.println("Number is Armstrong"); 
        else 
            System.out.println("Number is not Armstrong"); 
    }
    }
 }
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 8: Encapsulation and Inheritance - EXERCISES [पृष्ठ ४४५]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
अध्याय 8 Encapsulation and Inheritance
EXERCISES | Q IV. | पृष्ठ ४४५
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×