qfedu-basic-level/day4/d5.cpp

25 lines
376 B
C++
Raw Normal View History

2023-06-15 15:15:50 +08:00
#include <iostream>
using namespace std;
int n; // 全局变量
// 定义函数
void test1()
{
n = 100;
}
int main()
{
test1(); // 调用 test1 函数
cout << "global n = " << n << endl;
{
int m;
cout << "local m = " << m << endl;
}
// 跳出局部区域 m 变量则不能访问
// cout << "m = " << m << endl;
return 0;
}