using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace ConsoleApplication1 { class ...
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);
}
}
}
}
}