From c36e2cc37f04f6e49910ef8ea8fc240f22002e1b Mon Sep 17 00:00:00 2001 From: Mun Date: Tue, 8 Oct 2019 19:16:58 +0900 Subject: [PATCH 1/3] test pull request Signed-off-by: Mun --- pull_request_test/MunSeongJae/report_card.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 pull_request_test/MunSeongJae/report_card.c diff --git a/pull_request_test/MunSeongJae/report_card.c b/pull_request_test/MunSeongJae/report_card.c new file mode 100755 index 0000000..4a729cc --- /dev/null +++ b/pull_request_test/MunSeongJae/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; +} From 0ac852f2039507dfc6ea1c935399eba2e132b19f Mon Sep 17 00:00:00 2001 From: Mun Date: Tue, 8 Oct 2019 19:20:03 +0900 Subject: [PATCH 2/3] test Signed-off-by: Mun --- pull_request_test/MunSeongJae/test | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 pull_request_test/MunSeongJae/test diff --git a/pull_request_test/MunSeongJae/test b/pull_request_test/MunSeongJae/test new file mode 100644 index 0000000..e69de29 From 242314fcfdefd54709aba71c5c3658d45d5b2cb6 Mon Sep 17 00:00:00 2001 From: Mun Date: Tue, 12 Nov 2019 00:39:44 +0900 Subject: [PATCH 3/3] test Signed-off-by: Mun --- pull_request_test/MunSeongJae/test | 1 + 1 file changed, 1 insertion(+) diff --git a/pull_request_test/MunSeongJae/test b/pull_request_test/MunSeongJae/test index e69de29..527c880 100644 --- a/pull_request_test/MunSeongJae/test +++ b/pull_request_test/MunSeongJae/test @@ -0,0 +1 @@ +hello everyone!