From f17e4e7ef834fd25484af4dfa23a6a2e5b9e5e73 Mon Sep 17 00:00:00 2001 From: Lucky E <78407488+LuckyE1120@users.noreply.github.com> Date: Thu, 8 Sep 2022 14:32:24 +0800 Subject: [PATCH] Update test.cpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改了一下代码排版 --- Chapter 2/test.cpp | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/Chapter 2/test.cpp b/Chapter 2/test.cpp index d11787a..76bd069 100644 --- a/Chapter 2/test.cpp +++ b/Chapter 2/test.cpp @@ -1,12 +1,9 @@ #include - int -main -() { using - namespace - std; cout - << -"Come up and C++ me some time." -; cout << -endl; cout << -"You won't regret it!" << -endl;/*cin.get();*/return 0; } +int main() { + using namespace std; + cout << "Come up and C++ me some time."; + cout << endl; + cout << "You won't regret it!" << endl; + /*cin.get();*/ + return 0; +}