/*
*Copyright (c) 2014, 烟台大学计算机学院
*All rights reserved.
*文件名称:week12-project1-1-1.cpp
*作者:高赞
*完成日期:2014年 11 月 14 日
*版本号:v1.0
*
*问题描述:观察静态变量的储存特征
*/
#include <iostream>
using namespace std;
int f(int n);
int main()
{
cout<<f(5)<<" ";
cout<<f(8)<<endl;
return 0;
}
int f(int n)
{
static int a=2;//静态局部变量只能赋初值一次,以后每次调用只保留上一次结束的值
int b=0;
a+=n;
b+=a;
return b;
}
运算结果: