C#2

来源:互联网 发布:psd软件免费下载 编辑:程序博客网 时间:2024/05/22 17:49
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication3{    class Program    {        static void Main(string[] args)        {            int i,a,b,c, n = 1000;            for(i=100;i<n;i++)            {                a = i % 10;                b = i / 100;                c = i / 10 % 10;                if (i == Math.Pow(a, 3) + Math.Pow(b, 3) + Math.Pow(c, 3))                {                    Console.WriteLine("{0}是水仙花数", i);                }            }        }    }}

0 0
原创粉丝点击