This commit is contained in:
암냥 2026-04-08 16:02:20 +09:00
commit d42448a9d0
No known key found for this signature in database
13 changed files with 187 additions and 0 deletions

14
03/ex01.c Normal file
View file

@ -0,0 +1,14 @@
#include <stdio.h>
int main() {
int a,b;
printf("정수 입력 : ");
scanf("%d %d", &a, &b);
printf("[결과 출력]\n");
printf("%d + %d = %d\n", a, b, a+b);
printf("%d - %d = %d\n", a, b, a-b);
printf("%d * %d = %d\n", a, b, a*b);
printf("%d / %d = %d\n", a, b, a/b);
printf("%d %% %d = %d\n", a, b, a%b);
}