欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

用c#语言编写水仙花数

程序员文章站 2022-04-06 14:24:34
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);
                                  }

                          }
               }
      }
}