📄 pr08006.cpp
字号:
////////////////////////////////////////
// File Name: pr08006.cpp
////////////////////////////////////////
#include <iostream>
// Define the DEBUG macro.
#define DEBUG 1
////////////////////////////////////////
// The main() function.
////////////////////////////////////////
int main()
{
#if DEBUG
std::cout << "Debugging" << std::endl;
#endif
std::cout << "Running" << std::endl;
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -