日期:2014-05-17 浏览次数:20761 次
* 作 者: 雷恒鑫
* 完成日期: 2012 年 09 月08 日
* 版 本 号: V1.0
* 对任务及求解方法的描述部分
* 输入描述:
* 问题描述:
* 程序输出:
* 程序头部的注释结束
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication_do_while
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("这是一个用for while do-while三种循环控制语句求n!的一个程序");
Console.Write("请您输入所求的数:");
string n = Console.ReadLine();
int i, m = 1;
int x = int.Parse(n);//类型转换
for (i = 1; i < x; ++i)
{
m = m * (i + 1);
}
Console.WriteLine("用for 循环控制语句求{0}!的值为:{1}",x,m);
i = 1;
m = 1;
while (i < x)
{
m = m * (i + 1);
++i;
}
Console.WriteLine("用while 循环控制语句求{0}!的值为:{1}", x, m);
i = 1;
m = 1;
--x;
do
{
m = m * (i + 1);
++i;
} while (i <= x);
Console.WriteLine("用do-while 循环控制语句求{0}!的值为:{1}", (x+1), m);
Console.ReadKey();
}
}
}
运行结果: