wow
This commit is contained in:
parent
14647b72e2
commit
7f76e58e1e
10 changed files with 150 additions and 5 deletions
15
02/02_61p.c
Normal file
15
02/02_61p.c
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue