?? ex1_02.cpp
字號:
// Exercise 1.2 Writing the line "Hello World" to the screen using hexadecimal escape sequences.
#include <iostream>
using std::cout;
using std::endl;
int main() {
cout << endl
<< "\x48\x65\x6C\x6C\x6F\x20\x57\x6F\x72\x6C\x64"
<< endl;
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -