From db098cad65a89f5c22c36f812e79a2644562408c Mon Sep 17 00:00:00 2001 From: llshyun27 Date: Wed, 3 Apr 2024 20:58:40 +0900 Subject: [PATCH 1/2] =?UTF-8?q?feat=20:=20=EB=B9=BC=EA=B8=B0=20=EA=B8=B0?= =?UTF-8?q?=EB=8A=A5=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- calculator.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/calculator.c b/calculator.c index 176f397..95cf27c 100644 --- a/calculator.c +++ b/calculator.c @@ -10,9 +10,11 @@ void sub(int a, int b) } void mul() { + printf("a * b = %d\n",a * b); } void div() { + printf("a / b = %d\n",a/ b) } int main(void) From 90feac6d7f04b51790e7b9aaf76f5a7035de24a2 Mon Sep 17 00:00:00 2001 From: llshyun27 Date: Wed, 3 Apr 2024 20:59:14 +0900 Subject: [PATCH 2/2] =?UTF-8?q?feat=20:=20=EB=B9=BC=EA=B8=B0=20=EA=B8=B0?= =?UTF-8?q?=EB=8A=A5=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 3 +++ .idea/TEST.iml | 9 +++++++++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ 5 files changed, 32 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/TEST.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/TEST.iml b/.idea/TEST.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/TEST.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..47478b9 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..f5bba2a --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file