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

练习2014081406

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

标签:blog   os   io   for   ar   2014   cti   div   

/********************************************************************
* @file     Main_practise.cpp
* @date     2014-8-14
* @author   Tiger
* @brief    练习
* @details  试编写一个非递归的函数来计算斐波那契数列Fn,该函数应
			能直接计算出每个斐波那契数。上机测试代码的正确性。
********************************************************************/
#include <iostream>
#include <ctime>

int main(int argc, const char* argv[])
{
	srand(static_cast<unsigned int>(time(NULL)));
	int n = rand()%5;

	int fn_1 = 1, fn_2 = 1, fn = 1;
	for (int i=2; i<=n; ++i)
	{
		fn = fn_1 + fn_2;
		fn_2 = fn_1;
		fn_1 = fn;
	}

	std::cout << "第" << n << "项为" << fn << ".\n"; 

	system("pause");
	return 0;
}

 

练习2014081406,布布扣,bubuko.com

练习2014081406

标签:blog   os   io   for   ar   2014   cti   div   

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

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