📄 hour10_2.txt
字号:
The using statement saves you some typing! Instead of having to code:
std::cout
you can code one line
using namespace std
or
using std::cout
And
cout.
The same applies with std::endl and endl.
"\n" is the old C way of forcing the cursor to a new line. std::endl performs the
same action and is considered the more "modern" way of doing so. But it boils
down to a matter of personal choice!
There is no real "solution" to this exercise...
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -