1. 程式人生 > >C#第一個程式 輸出所有的水仙花數

C#第一個程式 輸出所有的水仙花數

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

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

/*執行結果
153
370
371
407
*/