일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- axi
- 정처기
- 코딩테스트
- boj
- C++
- baekjoon
- SQL
- verilog HDL
- 리눅스
- 자격증
- chip2chip
- Beakjoon
- verilog
- vitis
- hdl
- linux
- Bus
- 정보처리기사
- Vivado
- UNIX
- 백준
- Xilinx
- AMBA BUS
- amba
- 실기
- Backjoon
- Zynq
- HDLBits
- FPGA
- java
- Today
- Total
목록PS(중단) (64)
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..
#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 ascii[26] = {0}; int max = 0; int index = 0; for (int i = 0; i 1. A~Z가 사용된 횟수를 저장하기 위해 ascii 코드 번호를 사용한 배열 ascii를 생성2. toupper를 사용해 string 내용을 모두 대문자로 바꾸어 준 후 ascii에 횟수 저장3. max값을 알아내기 위한 for문 실행4. 사용된 횟수가 동일한 알파벳이 있는 경우 "?"를 출력하기 위한 for문 실행5...