문제: https://www.acmicpc.net/problem/1008
double 의 모든 자리를 출력하기 위해
cout 의 precision,fixed 와 limits 라이브러리의 std::numeric_limits<double> 을 사용했습니다.
my solving
c++
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #include <fstream> #include <iostream> #include <algorithm> #include <limits> using namespace std; int main() { double a, b; cin >> a >> b; cout.precision(numeric_limits<double>::max_digits10); cout << fixed << a / b << endl; return 0; } | cs |
'Algorithm, Data structure > Solved Algorithmic Problem' 카테고리의 다른 글
BAEKJOON 1010 - 다리 놓기 (0) | 2016.07.23 |
---|---|
BAEKJOON 1009 - 분산처리 (0) | 2016.07.23 |
BAEKJOON 1007 - Vector Matching (0) | 2016.07.23 |
BAEKJOON 1006 - 습격자 초라기 (0) | 2016.07.21 |
BAEKJOON 1005 - ACM Craft (0) | 2016.07.13 |