标签: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(); } } }
标签:blog http io ar sp on 2014 log cti
原文地址:http://blog.csdn.net/hbd0616/article/details/41143629