보안을 그리다, 훈이

[Baekjoon/Python3/C] 1008번 A/B 본문

Programming/Python & Data Structures

[Baekjoon/Python3/C] 1008번 A/B

HooNeee 2020. 12. 2. 22:21

[Baekjoon/Python3/C] 1008번 A/B

 

www.acmicpc.net/problem/1008

1008번: A/B

두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

[Python3]

A, B = map(int, input().split())
print(A / B)

 

[C]

#include <stdio.h>
int main(void) {
	double a, b;
	scanf("%lf %lf", &a, &b);
	printf("%.9lf", a/b);
}
Comments