码迷,mamicode.com
首页 > 编程语言 > 详细

用c#语言编写水仙花数

时间:2018-04-09 21:13:18      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:names   linq   rgs   str   read   reading   ogr   line   thread   

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);
                                  }

                          }
               }
      }
}

用c#语言编写水仙花数

标签:names   linq   rgs   str   read   reading   ogr   line   thread   

原文地址:https://www.cnblogs.com/yangkaiming/p/8762211.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!