logo

Armstrongo skaičius C

Prieš rašydami c programą, norėdami patikrinti, ar numeris yra Armstrongas, ar ne, supraskime, kas yra Armstrongo skaičius.

rūgšties savybės dbms

Armstrongo numeris yra skaičius, lygus jo skaitmenų kubų sumai . Pavyzdžiui, 0, 1, 153, 370, 371 ir 407 yra Armstrongo skaičiai.

Pabandykime suprasti kodėl 153 yra Armstrongo numeris.

 153 = (1*1*1)+(5*5*5)+(3*3*3) where: (1*1*1)=1 (5*5*5)=125 (3*3*3)=27 So: 1+125+27=153 

Pabandykime suprasti kodėl 371 yra Armstrongo numeris.

 371 = (3*3*3)+(7*7*7)+(1*1*1) where: (3*3*3)=27 (7*7*7)=343 (1*1*1)=1 So: 27+343+1=371 

Pažiūrėkime c programą, kad patikrintumėte Armstrongo skaičių C.

 #include int main() { int n,r,sum=0,temp; printf('enter the number='); scanf('%d',&n); temp=n; while(n>0) { r=n%10; sum=sum+(r*r*r); n=n/10; } if(temp==sum) printf('armstrong number '); else printf('not armstrong number'); return 0; } 

Išvestis:

 enter the number=153 armstrong number enter the number=5 not armstrong number