Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

เช็คเบอร์อาร์มสตรองว่าไม่ใช้ C


ปัญหา

จะตรวจสอบได้อย่างไรว่าหมายเลขที่กำหนดเป็นหมายเลข Armstrong หรือไม่โดยใช้ภาษา C Programming

วิธีแก้ปัญหา

ตัวเลขอาร์มสตรองคือตัวเลขที่เท่ากับผลรวมของลูกบาศก์ของตัวเลข

ไวยากรณ์

pqrs………=pow(p,n)+pow(q,n)+pow(r,n)+……….

ตัวอย่างเช่น 153,371,1634 เป็นต้น เป็นตัวเลขของอาร์มสตรอง

153=1*1*1 + 5*5*5 + 3*3*3
   =1+125+27
   =153 (Armstrong number)

โปรแกรม

#include<stdio.h>
int main(){
   int number,remainder,total=0,temp;
   printf("enter the number=");
   scanf("%d",&number);
   temp=number;
   while(number>0){
      remainder=number%10;
      total=total+(remainder*remainder*remainder);
      number=number/10;
   }
   if(temp==total)
      printf("This number is Armstrong number");
   else
      printf("This number is not Armstrong number");
   return 0;
}

ผลลัพธ์

enter the number=371
This number is Armstrong number
Check: 371=3*3*3 +7*7*7 + 1*1*1
           =27 + 343 +1
           =371
enter the number=53
This number is not Armstrong number

คำอธิบาย

53 = 5*5*5 + 3*3*3
   =125 +27
   = 152 != 53