From e01b627fd99cbb2ee18ea54e43896886232670a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E4=BB=81=E5=A5=95?= <119604228+Renyilin0115@users.noreply.github.com> Date: Tue, 13 Dec 2022 21:53:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9E=97=E4=BB=81=E5=A5=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit HW01 --- "\346\236\227\344\273\201\345\245\225" | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 "\346\236\227\344\273\201\345\245\225" diff --git "a/\346\236\227\344\273\201\345\245\225" "b/\346\236\227\344\273\201\345\245\225" new file mode 100644 index 0000000..ce2924c --- /dev/null +++ "b/\346\236\227\344\273\201\345\245\225" @@ -0,0 +1,11 @@ +#include +int main() +{ + int array[5] = {4, 5, 6, 7, 8}; + for (int i = 0; i < 5; ++i) + { + printf("%d ", array[i]); + } + puts(""); + return 0; +}