📄 comments.cpp
字号:
// comments.cpp
// demonstrates comments
#include <iostream> //preprocessor directive
using namespace std; //"using" directive
int main() //function name "main"
{ //start function body
cout << "Every age has a language of its own\n"; //statement
return 0; //statement
} //end function body
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -