⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex1_02.cpp

📁 一本语言类编程书籍
💻 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 + -