Ex3_5.cpp
上传用户:wuzhousb
上传日期:2022-07-12
资源大小:380k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. //【例3.5】 多个函数使用全局变量的例子。
  2. #include<iostream>
  3. using namespace std; 
  4. int n=100;
  5. void func(){
  6.  n*=2;
  7. }
  8. int main(){
  9. n*=2;
  10. cout<<n<<endl;
  11. func();
  12. cout<<n<<endl;
  13. return 0;
  14. }