用.net写一个水仙花数
时间: 2024-05-05 10:15:21 浏览: 65
C语言案例-水仙花数.zip
以下是使用C#编写水仙花数的示例代码:
```
using System;
namespace NarcissisticNumber
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("水仙花数:");
for (int i = 100; i <= 999; i++)
{
int a = i / 100; // 百位数
int b = (i / 10) % 10; // 十位数
int c = i % 10; // 个位数
if (i == a * a * a + b * b * b + c * c * c)
{
Console.WriteLine(i);
}
}
Console.ReadKey();
}
}
}
```
运行程序后,会输出100到999之间的水仙花数。
阅读全文