用C#判定一个三位数是不是水仙花数
2021-04-22 11:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.Write("请输入一个三位数:");
int n = int.Parse(Console.ReadLine());
if (n 999)
{
Console.WriteLine("输入有误");
}
else
{
int a = n / 100 % 10;
int b = n / 10 % 10;
int c = n % 10;
if (a * a * a +b * b * b + c * c * c == n)
{
Console.WriteLine("你输入的是水仙花数");
}
else
{
Console.WriteLine("你输入的不是水仙花数");
}
}
Console.ReadLine();
}
}
}
上一篇:关于使用C#编写 九九乘法表
下一篇:堆排序