From 12cea7d0b8d9281858b3c1f2227b569d61d5321d Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Tue, 29 Sep 2020 19:54:00 +0800 Subject: [PATCH] =?UTF-8?q?708.=20=E5=81=B6=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://www.acwing.com/problem/content/submission/code_detail/14061105/ --- AcWing/708/708.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 AcWing/708/708.cpp diff --git a/AcWing/708/708.cpp b/AcWing/708/708.cpp new file mode 100644 index 00000000..e9e3e707 --- /dev/null +++ b/AcWing/708/708.cpp @@ -0,0 +1,15 @@ +#include + +using std::cin; +using std::cout; +const char endl = '\n'; + +int main() { + std::ios::sync_with_stdio(false); + + for (int i = 2; i <= 100; i += 2) { + cout << i << endl; + } + + return 0; +}