黑马程序员技术交流社区

标题: 菜鸟请求支援! [打印本页]

作者: 苦咖啡    时间: 2013-9-3 20:55
标题: 菜鸟请求支援!
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 运算符
{
    class Program
    {
        static void Main(string[] args)
        {
            for (int i = 100; i <= 999;i++ )
            {
                int a = i % 100;
                int b = (i - a * 100) % 10;
                int c = i - a * 100 - b * 10;

                if (i == a * a * a + b * b * b + c * c * c)
                {
                    Console.WriteLine(i);
                }
            }
            Console.ReadKey();
        }
    }
}
不知道怎么回事,生成通过了,可是就是不出结果呢~{:soso_e132:}请求支援呀!






欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2