ex4_9.cpp
来自「c++编写的关于课程管理系统的软件」· C++ 代码 · 共 18 行
CPP
18 行
// Note:Your choice is C++ IDE
#include "iostream.h"
int global1=0;
int global2;
static int global3=1;
void main()
{
int i;
for (i=0;i<3;i++)
{
int temp=1;
static int perm=1;
cout<<"temp="<<temp<<",perm="<<perm<<endl;
++temp;
++perm;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?