From 14e245a7c05565c0ddfa9be8f060061672b4fbaa Mon Sep 17 00:00:00 2001 From: gigyeyuye Date: Thu, 18 Sep 2025 09:56:48 +0900 Subject: [PATCH 1/2] test pull request Signed-off-by: gigyeyuye --- pull_reqeust_test/yewon/yewon.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 pull_reqeust_test/yewon/yewon.txt diff --git a/pull_reqeust_test/yewon/yewon.txt b/pull_reqeust_test/yewon/yewon.txt new file mode 100644 index 00000000..a5e65112 --- /dev/null +++ b/pull_reqeust_test/yewon/yewon.txt @@ -0,0 +1 @@ +it's me From 5acbb5d5a5f5b38d82a0b2ab3f27c7e4226d5857 Mon Sep 17 00:00:00 2001 From: YewonYu Date: Wed, 22 Oct 2025 14:32:32 +0900 Subject: [PATCH 2/2] test pull request Signed-off-by: YewonYu --- pull_reqeust_test/yewon/report_card.c | 21 +++++++++++++++++++++ pull_reqeust_test/yewonyu/report_card.c | 21 +++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 pull_reqeust_test/yewon/report_card.c create mode 100644 pull_reqeust_test/yewonyu/report_card.c diff --git a/pull_reqeust_test/yewon/report_card.c b/pull_reqeust_test/yewon/report_card.c new file mode 100644 index 00000000..4a729cc9 --- /dev/null +++ b/pull_reqeust_test/yewon/report_card.c @@ -0,0 +1,21 @@ +#include + +int main() +{ + int kor, eng, math; + int sum = 0; + + math = 80; + eng = 100; + kor = 90; + sum = 80 + 100 + 90; + + printf("This program print report card.\n"); + + printf("Korean : %d\n", kor); + printf("English : %d\n", eng); + printf("Math : %d\n", math); + printf("Sum : %d\n", sum); + printf("Average : %d\n", sum/3); + return 0; +} diff --git a/pull_reqeust_test/yewonyu/report_card.c b/pull_reqeust_test/yewonyu/report_card.c new file mode 100644 index 00000000..4a729cc9 --- /dev/null +++ b/pull_reqeust_test/yewonyu/report_card.c @@ -0,0 +1,21 @@ +#include + +int main() +{ + int kor, eng, math; + int sum = 0; + + math = 80; + eng = 100; + kor = 90; + sum = 80 + 100 + 90; + + printf("This program print report card.\n"); + + printf("Korean : %d\n", kor); + printf("English : %d\n", eng); + printf("Math : %d\n", math); + printf("Sum : %d\n", sum); + printf("Average : %d\n", sum/3); + return 0; +}