From 986645472921b260a355b004745509f9d8450794 Mon Sep 17 00:00:00 2001 From: 4875415 Date: Thu, 15 Oct 2020 19:12:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E755453=E9=82=B1=E6=B3=93?= =?UTF-8?q?=E6=84=B7=20=E4=BD=9C=E6=A5=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 755453/main.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 755453/main.cpp diff --git a/755453/main.cpp b/755453/main.cpp new file mode 100644 index 0000000..754ac36 --- /dev/null +++ b/755453/main.cpp @@ -0,0 +1,14 @@ +#include + +int main() { + for(int i=0;i<=5;i++){ + for(int j=1;j<=5-i;j++){ + printf(" "); + } + for(int n=0;n<=i;n++){ + printf("#"); + } + printf("\n"); + } + return 0; +} \ No newline at end of file