From 83f4c227a10c712dc340d434a9f4753de84a0a78 Mon Sep 17 00:00:00 2001 From: seonghwan <조성환,cshwan96 skkusosc> Date: Tue, 4 Apr 2017 19:40:43 +0900 Subject: [PATCH] test pull request MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: seonghwan <조성환,cshwan96 skkusosc> --- pull_reqeust_test/seonghwan/report_card.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pull_reqeust_test/seonghwan/report_card.c diff --git a/pull_reqeust_test/seonghwan/report_card.c b/pull_reqeust_test/seonghwan/report_card.c new file mode 100644 index 00000000..bf94047b --- /dev/null +++ b/pull_reqeust_test/seonghwan/report_card.c @@ -0,0 +1,20 @@ +#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); + return 0; +}