f0708.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // f0708.cpp
- // 静态局部数据
- //=====================================
- #include<iostream>
- using namespace std;
- //-------------------------------------
- void func();
- int n=1;
- //-------------------------------------
- int main(){
- int a=0, b=-10;
- cout<<"a="<<a<<", b="<<b<<", n="<<n<<endl;
- func();
- cout<<"a="<<a<<", b="<<b<<", n="<<n<<endl;
- func();
- }//------------------------------------
- void func(){
- static int a=2;
- int b=5;
- a+=2, b+=5;
- n+=12;
- cout<<"a="<<a<<", b="<<b<<", n="<<n<<endl;
- }//====================================