1. 程式人生 > >用c#語言編寫水仙花數

用c#語言編寫水仙花數

sta program for eric eap write 水仙花 ogr ati

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
for (int i = 100; i < 999; i++)
{
int a = i / 100 % 10;
int b = i / 10 % 10;
int c = i / 10;
if (a * a * a + b * b * b + c * c * c ==i)
{
Console.WriteLine(i);
}

}
}
}
}

用c#語言編寫水仙花數