码迷,mamicode.com
首页 > 编程语言 > 详细

C++学习笔记(10)函数

时间:2015-07-07 16:12:33      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

一、函数操作 

 1 #include "stdafx.h"
 2 #include<iostream>
 3 #include<string>
 4 using std::cout;
 5 using std::cin;
 6 using std::endl;
 7 using std::string;
 8 int fact(int);//如果没有这句话会提示找不到标识符,也可以把fact函数放在main函数前面
 9 int _tmain(int argc, _TCHAR* argv[])
10 {
11     int num,result;
12     cin>>num;
13     result =  fact(num);
14     cout<<num<<"的阶乘结果为:"<<result<<endl;
15     system("pause");
16     return 0;
17 }
18 int fact(int num)
19 {
20     int i = 1;
21     while (num >1)
22     {
23         i*=num--;
24     }
25     return i;
26 }

 

C++学习笔记(10)函数

标签:

原文地址:http://www.cnblogs.com/Charles-Wang/p/4627024.html

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