From 0d9f26e035552535ee31fe1064c0a6675e8c6a24 Mon Sep 17 00:00:00 2001 From: Yellow <16631150925@163.com> Date: Tue, 5 May 2026 20:23:04 +0800 Subject: [PATCH 1/2] test --- build/test_results.json | 1 + exercises/01_helloworld.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 build/test_results.json diff --git a/build/test_results.json b/build/test_results.json new file mode 100644 index 0000000..d7596e6 --- /dev/null +++ b/build/test_results.json @@ -0,0 +1 @@ +{"channel": "gitee","courseId": 1558,"ext": "aaa","name": "","score": 1,"totalScore": 5} diff --git a/exercises/01_helloworld.c b/exercises/01_helloworld.c index e610016..01cc40f 100644 --- a/exercises/01_helloworld.c +++ b/exercises/01_helloworld.c @@ -4,7 +4,7 @@ int main(){ // Print "Hello World!" to the console - + printf("Hello World!"); return 0; -- Gitee From 6e4a48b9326c27c540ebde169a1b418b2bfd9812 Mon Sep 17 00:00:00 2001 From: Yellow <16631150925@163.com> Date: Tue, 5 May 2026 20:28:48 +0800 Subject: [PATCH 2/2] test --- build/test_results.json | 2 +- exercises/02_loop.c | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/build/test_results.json b/build/test_results.json index d7596e6..8b79d22 100644 --- a/build/test_results.json +++ b/build/test_results.json @@ -1 +1 @@ -{"channel": "gitee","courseId": 1558,"ext": "aaa","name": "","score": 1,"totalScore": 5} +{"channel": "gitee","courseId": 1558,"ext": "aaa","name": "","score": 2,"totalScore": 5} diff --git a/exercises/02_loop.c b/exercises/02_loop.c index 3e361e6..e4c6573 100644 --- a/exercises/02_loop.c +++ b/exercises/02_loop.c @@ -8,6 +8,8 @@ int main(void) { //TODO - + for(int i = 1;i<=10;i++) { + printf("%d\n",i); + } return 0; } \ No newline at end of file -- Gitee