logo

Numero di Armstrong in C

Prima di andare a scrivere il programma c per verificare se il numero è Armstrong o meno, capiamo cos'è il numero Armstrong.

Numero di Armstrong È un numero che è uguale alla somma dei cubi delle sue cifre . Ad esempio 0, 1, 153, 370, 371 e 407 sono i numeri Armstrong.

Proviamo a capire perché 153 è un numero di Armstrong.

 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 

Proviamo a capire perché 371 è un numero di Armstrong.

 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 

Vediamo il programma c per controllare il numero Armstrong in 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; } 

Produzione:

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