1 2 3 4 5 6 7 8 9 10 11 12 13 | #include <iostream> #include <stdio.h> int main(void){ double x, y; double result; scanf("%lf %lf", &x, &y); result = x/y; printf("%.9lf\n", result); return 0; } | cs |
'C & C++ > Baekjoon' 카테고리의 다른 글
백준 1110 - 더하기 사이클 (0) | 2017.12.27 |
---|---|
백준 1065 - 한수 (0) | 2017.12.27 |
백준 1003 - 피보나치 함수 (0) | 2017.12.27 |
백준 1001 - A-B (0) | 2017.12.27 |
백준 1000 - A+B (0) | 2017.12.27 |