码迷,mamicode.com
首页 > 其他好文 > 详细

水仙花 程序

时间:2014-09-09 18:23:19      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:io   ar   for   cti   sp   on   c   line   ad   

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

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

水仙花 程序

标签:io   ar   for   cti   sp   on   c   line   ad   

原文地址:http://blog.csdn.net/zjx211314/article/details/39157999

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!