📄 if.cpp
字号:
#include <iostream.h>
#define DEBUG // 宏定义
main()
{
int nDebug=50;
int nRealse=6;
// . . . . . .
#ifdef DEBUG
cout<<"DEBUG: value of is "<<nDebug<<endl; // 调试版
#else
cout<<"RELEASE: value of is "<<nRealse<<endl; // 正式版
#endif
return 1;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -