From a2bde05e91919c1b0587a47832e6fe3762080165 Mon Sep 17 00:00:00 2001 From: yessir skkusosc <--unset-all> Date: Tue, 8 Oct 2019 03:13:48 -0700 Subject: [PATCH] test pull request Signed-off-by: yessir skkusosc <--unset-all> --- pull_request_test/yessir/report_card.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pull_request_test/yessir/report_card.c diff --git a/pull_request_test/yessir/report_card.c b/pull_request_test/yessir/report_card.c new file mode 100644 index 0000000..ec8231e --- /dev/null +++ b/pull_request_test/yessir/report_card.c @@ -0,0 +1,22 @@ +#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; +} +