This commit is contained in:
암냥 2026-03-31 09:16:35 +09:00
commit 7f76e58e1e
No known key found for this signature in database
10 changed files with 150 additions and 5 deletions

15
02/02_61p.c Normal file
View file

@ -0,0 +1,15 @@
#include <stdio.h>
int main() {
int A, B;
printf("정수 A : ");
scanf("%d", &A);
printf("정수 B : ");
scanf("%d", &B);
printf("정수 A / B 결과 출력(지수형)\n");
printf("%.2e\n", (double)A / B);
return 0;
}