using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
for (int i = 100; i < 999; i++)
{
int a = i / 100 % 10;
int b = i / 10 % 10;
int c = i / 10;
if (a * a * a + b * b * b + c * c * c ==i)
{
Console.WriteLine(i);
}
}
}
}
}
原文地址:https://www.cnblogs.com/yangkaiming/p/8762211.html