Write a C# Sharp program to check whether a given number is an Armstrong number or not
- برمجة سي شارب
- برمجة
- 2021-05-17
- MarwaMohammed
الأجوبة
/*When the sum of the cube of the individual digits of a number*/
/*is equal to that number, the number is called Armstrong number. For example 153.*/
/*Sum of its divisor is 13 + 53;+ 33; = 1+125+27 = 153*/
using System;
public class Exercise29
{
public static void Main()
{
int num,r,sum=0,temp;
Console.Write("\n\n");
Console.Write("Check whether a given number is armstrong number or not:\n");
Console.Write("----------------------------------------------------------");
Console.Write("\n\n");
Console.Write("Input a number: ");
num = Convert.ToInt32(Console.ReadLine());
for(temp=num;num!=0;num=num/10){
r=num % 10;
sum=sum+(r*r*r);
}
if(sum==temp)
Console.Write("{0} is an Armstrong number.\n",temp);
else
Console.Write("{0} is not an Armstrong number.\n",temp);
}
}أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
