码迷,mamicode.com
首页 > 其他好文 > 详细

自然数之和

时间:2014-11-15 11:28:56      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   sp   on   2014   log   cti   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication3
{
    class Program
    {
        static void Main(string[] args)
        {

            int n = 0, sum=1;
            do
            {
                sum += n;
                n++;


            } while (n <= 100);
            Console.WriteLine("n:{0}自然数之和为:{1}", n,sum);
            Console.Read();

        }
    }
}

bubuko.com,布布扣

自然数之和

标签:blog   http   io   ar   sp   on   2014   log   cti   

原文地址:http://blog.csdn.net/hbd0616/article/details/41143629

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