2021年8月27日20:22:31
#include<iostream>
using namespace std;
//函数声明
int moo(int n);
//函数定义
void fee(){
cout << "haha" << endl;
}
/*静态变量:相当于在函数内部开了一个
只有该函数能用的全局变量
*/
int output(void){
static int cnt = 0;
cnt++;
cout << "call: " << cnt << " times" << endl;
}
int foo(int n,int i){ //返回类型 名字(参数)
int res = 1;
for(;i <=n;i++) res *=i;
return res; //返回值
}
int main(){
int t = foo(5,1);
fee();
cout << t << endl;
output();
output();
output();
return 0;
}