Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

main

[백준 - 1008번] A/B 본문

Algorithm

[백준 - 1008번] A/B

1984 2022. 1. 21. 07:05

 

  • 정밀도(Precision) 설정 ; std::setprecision()
  • std::cout의 기본 정밀도는 6이다. 즉, 모든 부동 소수점 숫자는 6자리까지만 유의하다고 가정하여 이후는 날림.
#include <iostream>
#include <iomanip> // for std::setprecision()

using namespace std;

int main(void)
{
	std::cout << std::setprecision(16);
	long double A, B;

	cin >> A >> B;
	cout << A / B;

	return 0;
}

[참고 자료]

https://boycoding.tistory.com/152

728x90

'Algorithm' 카테고리의 다른 글

[백준 - 2562번] 최댓값  (0) 2022.01.22
[백준 - 1157번] 단어 공부  (0) 2022.01.21
[백준 - 1152번] 단어의 개수  (0) 2022.01.21
[백준 - 1929번] 소수 구하기  (0) 2022.01.21
[백준 - 1978번] 소수 찾기  (0) 2022.01.21
Comments