using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Soru_Onbes
{
class Program
{
static void Main(string[] args)
{
for (int i = 1; i <= 999; i++)
{
if (i <= 9)
{
int a = i * i * i;
if (a == i) Console.WriteLine(i);
}
else if (i >= 10 && i <= 99)
{
int a = i / 10;
int b = i % 10;
a = a * a * a;
b = b * b * b;
if ((a + b) == i) Console.WriteLine(i);
}
else
{
int a = i / 100;
int b = (i % 100) / 10;
int c = (i - (a * 100)) % 10;
a = a * a * a;
b = b * b * b;
c = c * c * c;
if ((a + b + c) == i) Console.WriteLine(i);
}
}
Console.ReadLine();
}
}
}
0 yorum:
Yorum Gönder