Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Backjoon
- java
- 자격증
- Bus
- C++
- Xilinx
- boj
- 정보처리기사
- baekjoon
- amba
- 백준
- 정처기
- AMBA BUS
- Vivado
- verilog
- hdl
- FPGA
- 실기
- UNIX
- 리눅스
- HDLBits
- SQL
- verilog HDL
- vitis
- Zynq
- linux
- Beakjoon
- 코딩테스트
- chip2chip
- axi
Archives
- Today
- Total
Hueestory
[1008] A/B (C++) 본문
#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