일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- linux
- UNIX
- verilog HDL
- 코딩테스트
- 백준
- boj
- Xilinx
- verilog
- axi
- HDLBits
- 정처기
- C++
- SQL
- vitis
- 리눅스
- Zynq
- FPGA
- 정보처리기사
- java
- hdl
- Beakjoon
- Vivado
- AMBA BUS
- baekjoon
- Backjoon
- 실기
- 자격증
- Bus
- amba
- chip2chip
- Today
- Total
목록PS(중단)/BOJ (54)
Hueestory
#include #include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n, r; cin >> n; string str; for (int i = 0; i > r >> str; for (int j = 0; j 1. n번의 반복 테스트 케이스를 받음2. r번의 반복 횟수를 받고 str에 문자열 받음
#include #include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int a, b, c; cin >> a >> b >> c; int A[10] = {}; string sum = to_string(a * b * c); for (int i = 0; i 1. 3개의 자연수를 받고 모두 곱한 값을 string 형식으로 sum에 저장2. ascii code를 사용해 for문으로 sum을 탐색하며 각 숫자의 배열값을 증가 후 출력
#include #include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); vector> num(9); int max = 0; int index = 0; for (int i = 0; i > num[i].first; for (int i = 0; i max) { max = num[i].first; index = i; } cout 1. pair vector 생성 후 vector의 first부분에 9개의 자연수를 받음2. max의 초기값을 0으로 설정 후 자연수와 비교해 max값을 찾아내고, 해당 max값의 index를 찾아냄3. max값과 index + 1값 출력
#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cout 1. 여러 방법이 있지만, iostream의 출력 방식 cout을 사용
#include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int A[5]; for (int i = 0; i > A[i]; int num = 0; for (int i = 0; i 1. 5개의 숫자를 받는다2. 모든 수를 제곱하여 더한 값을 10으로 나눈 나머지를 출력
#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 0; j--) cout 1. N개의 줄 만큼 실행하기 위한 for문 안에 공백을 출력하기 위한 for문과 별을 출력하기 위한 for문 작성
#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문을 사용해 별 출력