From 573eeeaa395a2fb23f9494b2b7abbb8c74821812 Mon Sep 17 00:00:00 2001 From: Nowtimedifference Date: Mon, 30 Sep 2024 22:41:04 +0900 Subject: [PATCH] test pull request Signed-off-by: Nowtimedifference --- pull_reqeust_test/sihyun/report_card.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pull_reqeust_test/sihyun/report_card.c diff --git a/pull_reqeust_test/sihyun/report_card.c b/pull_reqeust_test/sihyun/report_card.c new file mode 100644 index 00000000..4a729cc9 --- /dev/null +++ b/pull_reqeust_test/sihyun/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; +}