From a379cacb1df70748ae627b089a35a08afbf6dace Mon Sep 17 00:00:00 2001 From: foxliver Date: Thu, 25 Sep 2025 17:34:15 +0900 Subject: [PATCH] =?UTF-8?q?scanf()=20=EA=B8=B0=EC=B4=88=20=EC=8B=A4?= =?UTF-8?q?=EC=8A=B5=20-=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Practice_03/p03-2.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Practice_03/p03-2.c diff --git a/Practice_03/p03-2.c b/Practice_03/p03-2.c new file mode 100644 index 0000000..4ab63ee --- /dev/null +++ b/Practice_03/p03-2.c @@ -0,0 +1,12 @@ +#include + +int main(){ + int num; + + printf("정수 입력 : "); + scanf("%d", &num); + + printf("결과 : %d\n", num); + + return 0; +} \ No newline at end of file