Unverified Commit db3c9011 authored by SodaCris's avatar SodaCris Committed by GitHub
Browse files

加分号,统一对齐

parent 73abc055
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ int main() { // 定义 main 函数
using namespace std;

int main() {                // 定义 main 函数
  cout << "Hello, world!"  // 输出 Hello, world!
  cout << "Hello, world!";  // 输出 Hello, world!
  return 0;                 // 返回 0,结束 main 函数
}
```