?? program_2_7.cpp
字號:
// Program 2.7: Output different base constants
#include <iostream>
using namespace std;
int main() {
cout << "Display integer constants\n" << endl;
cout << "Octal constant 023 is " << 023 << " decimal" << endl;
cout << "Decimal constant 23 is " << 23 << " decimal" << endl;
cout << "Hexadecimal constant 0x23 is " << 0x23 << " decimal" << endl;
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -