Hueestory

[1008] A/B (C++) 본문

PS(중단)/BOJ

[1008] A/B (C++)

히명 2024. 4. 25. 10:05
#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);

	double A; cin >> A;
	double B; cin >> B;
    
    cout.precision(9);
    cout << fixed;
	cout << A/B << endl;
    cout.unsetf(ios::fixed);

	return 0;	
}

 

1. 출력값의 절대오차 또는 상대오차가 10^-9 이하여야 한다

=> 소수점 아래 9번째 이하까지 정확한 연산이 되어야 하며, 연산한 값이 소수점 9번째 자리까지 출력되어야 함

 

'PS(중단) > BOJ' 카테고리의 다른 글

[1330] 두 수 비교하기 (C++)  (0) 2024.04.25
[1152] 단어의 개수 (C++)  (0) 2024.04.25
[1001] A-B (C++)  (0) 2024.04.25
[1000] A+B (C++)  (0) 2024.04.25
[11004] K번째 수 (C++) / 2가지 풀이  (0) 2024.04.25
Comments