[C++] 백준 4단계 - 3052번 문제
자료구조 & 알고리즘/BOJ2023. 3. 31. 00:38[C++] 백준 4단계 - 3052번 문제

문제설명 소스코드 #include using namespace std; int main() { int array[42] = {}; int input; for (int i = 0; i > input; ++array[input % 42]; } int count = 0; for (int i = 0; i 0) ++count; cout

[C++] 백준 4단계 - 5597번 문제
자료구조 & 알고리즘/BOJ2023. 3. 30. 01:06[C++] 백준 4단계 - 5597번 문제

문제설명 소스코드 #include using namespace std; int main() { int arr[30] = { 0 }; int input = 0; for (int i = 0; i > input; arr[input - 1] = 1; } for (int i = 0; i < 30; ++i) if (arr[i] != 1) cout

[C++] 백준 4단계 - 10810번 문제
자료구조 & 알고리즘/BOJ2023. 3. 29. 00:29[C++] 백준 4단계 - 10810번 문제

문제설명 소스코드 #include using namespace std; int arr[101]; int N, M; int main() { cin >> N >> M; while (M--) { int i, j, k; cin >> i >> j >> k; for (int u = i; u

[C++] 백준 4단계 - 2562번 문제
자료구조 & 알고리즘/BOJ2023. 3. 29. 00:12[C++] 백준 4단계 - 2562번 문제

문제설명 소스코드 #include using namespace std; int main() { int max = 0; int idx; int arr[9]; for (int i = 0; i > arr[i]; if (arr[i] > max) { max = arr[i]; idx = i; } } cout

[C++] 백준 4단계 - 10818번 문제
자료구조 & 알고리즘/BOJ2023. 3. 29. 00:03[C++] 백준 4단계 - 10818번 문제

문제설명 소스코드 #include using namespace std; int main() { int N; int max; int min; cin >> N; int* arr = new int[N]; for (int i = 0; i > arr[i]; max = min = arr[0]; for (int i = 0; i max) max = arr[i]; if (arr[i] < min) min = arr[i]; } cout

[C++] 백준 4단계 - 10871번 문제
자료구조 & 알고리즘/BOJ2023. 3. 28. 00:10[C++] 백준 4단계 - 10871번 문제

문제설명 소스코드 #include using namespace std; int main() { int N; int X; cin >> N >> X; int* arr = new int[N]; for (int i = 0; i > arr[i]; for (int i = 0; i < N; ++i) if (arr[i] < X) cout

[C++] 백준 4단계 - 10807번 문제
자료구조 & 알고리즘/BOJ2023. 3. 28. 00:05[C++] 백준 4단계 - 10807번 문제

문제설명 소스코드 #include using namespace std; int main() { int arrlength; int num = 0; int input; cin >> arrlength; int* arr = new int[arrlength]; for (int i = 0; i > arr[i]; cin >> input; for (int i = 0; i < arrlength; ++i) if (input == arr[i]) ++num; cout

[C++] 백준 3단계 - 10951번 문제
자료구조 & 알고리즘/BOJ2023. 3. 28. 00:01[C++] 백준 3단계 - 10951번 문제

문제설명 소스코드 #include using namespace std; int main() { int a, b; while (!(cin >> a >> b).eof()) cout val; cout > a >> b).eof() 방식으로 괄호 안의 cin >> a >> b를 통해 읽은 후 eof상태인지를 검사하는 것이다. 따라서 아래와 같이 소스코드를 작성해야한다. while(!(cin >> a >> b).eof()) { ... } 출처 : https://st-lab.tistory.com/257

image