📄 trialrun.cpp
字号:
// TrialRun.cpp
// Our first program
#include <iostream>
using namespace std;
int main()
{
cout << "Some people think programming Windows"
<< endl
<< "is like nailing jello to the ceiling..."
<< endl
<< "easy with the right kind of nails."
<< endl << endl;
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -