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:}请求支援呀!
|
|