Last active
October 7, 2023 05:03
-
-
Save Dup4/a18baab9a6115928d69e441aa6a8369a to your computer and use it in GitHub Desktop.
中文 C++ 编程
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| using namespace std; | |
| #define 输出 cout | |
| #define 换行 endl | |
| #define 常量 const | |
| #define 整形 int | |
| #define 等于 = | |
| #define 主函数 main | |
| #define 返回 return | |
| #define 零 0 | |
| 整形 主函数 () { | |
| 常量 整形 一个变量 等于 2; | |
| 输出 << 一个变量 << 换行; | |
| 返回 零; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment