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

练习2014081404

时间:2014-08-14 23:13:46      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:blog   os   io   ar   2014   cti   div   log   

/********************************************************************
* @file     Main_practise.cpp
* @date     2014-8-14
* @author   Tiger
* @brief    练习
* @details  试编写一个非递归函数来计算n!,并上机测试函数的正确
			性。
********************************************************************/
#include <iostream>
#include <ctime>

int CalFactorial(int n);

int main(int argc, const char* argv[])
{
	srand(static_cast<unsigned int>(time(NULL)));
	int n = rand()%20;
	std::cout << n << "的阶乘为" << CalFactorial(n) << std::endl;

	system("pause");
	return 0;
}

int CalFactorial(int n)
{
	if (1 == n)
	{
		return 1;
	}
	else
	{
		return n*CalFactorial(n-1);
	}
}

 

练习2014081404,布布扣,bubuko.com

练习2014081404

标签:blog   os   io   ar   2014   cti   div   log   

原文地址:http://www.cnblogs.com/roronoa-zoro-zrh/p/3913338.html

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