Last active
October 7, 2023 05:03
-
-
Save Dup4/a18baab9a6115928d69e441aa6a8369a to your computer and use it in GitHub Desktop.
Revisions
-
Dup4 renamed this gist
Oct 7, 2023 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Dup4 created this gist
Oct 7, 2023 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ #include <iostream> using namespace std; #define 输出 cout #define 换行 endl #define 常量 const #define 整形 int #define 等于 = #define 主函数 main #define 返回 return #define 零 0 整形 主函数 () { 常量 整形 一个变量 等于 2; 输出 << 一个变量 << 换行; 返回 零; }