일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 정처기
- verilog HDL
- boj
- hdl
- Bus
- 리눅스
- 실기
- UNIX
- chip2chip
- java
- Beakjoon
- 코딩테스트
- Backjoon
- baekjoon
- linux
- Xilinx
- Vivado
- 자격증
- FPGA
- SQL
- amba
- C++
- 백준
- AMBA BUS
- vitis
- verilog
- 정보처리기사
- Zynq
- HDLBits
- axi
- Today
- Total
목록Beakjoon (15)
Hueestory
#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; cin >> n; for (int i = 1; i 1. 이중 for문을 사용해 별 출력
#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int A; cin >> A; int B; cin >> B; if (A > B) cout "
#include #include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); string str; getline(cin, str); int result = 1; for (int i = 0; i 1. 공백이 등장하면 단어의 개수 +1 if (str[0] == ' ') result--;if (str[str.length() - 1] == ' ') result--; 2. 문자열의 첫 부분과 마지막 부분이 공백이면 result값 -1, 위 부분을 빼먹어서 틀렸던 문제
#include #include 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 1. 출력값의 절대오차 또는 상대오차가 10^-9 이하여야 한다=> 소수점 아래 9번째 이하까지 정확한 연산이 되어야 하며, 연산한 값이 소수점 9번째 자리까지 출력되어야 함
#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int A; cin >> A; int B; cin >> B; cout
#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int A; cin >> A; int B; cin >> B; cout
#include #include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n, k; cin >> n >> k; vector A(n, 0); for (int i = 0; i > A[i]; sort(A.begin(), A.end()); cout 1. sort 함수 사용 후 k번째 수, A[k-1] 출력 #include #include #include using namespace std;void quicksort(vector& a, int start, int end);int main(){ ios::sync_with_stdio(false); cin.tie(NULL..