p6_1_p2.cpp
来自「相当丰富的C++源码」· C++ 代码 · 共 19 行
CPP
19 行
// p6_1_p2.cpp
#include <iostream>
using namespace std;
extern int G;
extern int g;
void p2dispG()
{
G=22;
cout<<"in p2 G="<<G<<endl;
}
void p2dispg()
{
g=222;
cout<<"in p2 g="<<g<<endl;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?