有时候,思想会在天空crossdoor.blog.chinaunix.net
159673353
全部博文(14)
2011年(5)
2010年(9)
lkdx9268
panyunla
虫子樱桃
iceland
dcockcn
Bsolar
奔跑的胖
DOUZ2016
王思潜
结痂的伤
szxxlife
Perl学习
分类: C/C++
2011-01-09 03:04:55
这一次的任务是计算500之内的偶数合。
代码:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace c4_t3 { class Program { static void Main(string[] args) { Console.WriteLine("分别使用for、while、do/while语句求500以内偶数合。"); Console.WriteLine("for语句结果:{0}",qo_for()); Console.WriteLine("while语句结果:{0}", qo_while()); Console.WriteLine("do/while语句结果:{0}", qo_dowhile()); System.Threading.Thread.Sleep(1000000); } static int qo_for() { int i,sum=0; for (i=0;i<=500;i+=2) { sum+=i; } return sum; } static int qo_while() { int i=0,sum=0; while (i <= 500) { if (i % 2 == 0) sum += i; i++; } return sum ; } static int qo_dowhile() { int i = 0, sum = 0; do { if (i % 2 == 0) sum += i; i++; } while (i < 501); return sum; } } }
上一篇:C#学习笔记(成绩分等,学习switch和if)
下一篇:C#学习笔记(递归算法,算斐波那契数列的某位数的值)
登录 注册