[C++] 백준 8단계 - 2745번 문제 (진법 변환)
자료구조 & 알고리즘/BOJ2023. 4. 22. 15:41[C++] 백준 8단계 - 2745번 문제 (진법 변환)

문제설명 소스코드 #include #include #include using namespace std; int main() { string N; int B; int result = 0; string dchar = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; cin >> N >> B; for (int i = 0; i < N.length(); ++i) { int d = dchar.find(N[i]); result += d * pow(B, N.length() - 1 - i); } cout

[C++] 백준 - 4470번 문제 (줄 번호)
자료구조 & 알고리즘/BOJ2023. 4. 21. 21:27[C++] 백준 - 4470번 문제 (줄 번호)

문제설명 소스코드 #include #include using namespace std; int main() { int N; string input; cin >> N; cin.ignore(); for (int i = 0; i < N; ++i) { getline(cin, input); cin.clear(); cout

[C++] 백준 7단계 - 2563번 문제 (색종이)
자료구조 & 알고리즘/BOJ2023. 4. 20. 20:02[C++] 백준 7단계 - 2563번 문제 (색종이)

문제설명 소스코드 #include using namespace std; int main() { int whitepaper[100][100] = { 0 }; int N; int row; int col; int total = 0; cin >> N; for (int i = 0; i > row >> col; for (int j = row; j col; for (int j = ro..

[C++] 백준 7단계 - 10798번 문제 (세로읽기)
자료구조 & 알고리즘/BOJ2023. 4. 18. 18:16[C++] 백준 7단계 - 10798번 문제 (세로읽기)

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

[C++] 백준 7단계 - 2566번 문제 (최댓값)
자료구조 & 알고리즘/BOJ2023. 4. 18. 16:20[C++] 백준 7단계 - 2566번 문제 (최댓값)

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

[C++] 백준 7단계 - 2738번 문제 (행렬 덧셈)
자료구조 & 알고리즘/BOJ2023. 4. 17. 17:44[C++] 백준 7단계 - 2738번 문제 (행렬 덧셈)

문제설명 소스코드 #include using namespace std; int main() { int N; int M; cin >> N >> M; int** arr = new int* [N]; //2차원 배열 동적할당을 위한 더블 포인터 선언 for (int i = 0; i > arr[i][j]; //첫 ..

[C++] 백준 6단계 - 25206번 문제 (너의 평점은)
자료구조 & 알고리즘/BOJ2023. 4. 17. 15:38[C++] 백준 6단계 - 25206번 문제 (너의 평점은)

문제설명 소스코드 #include using namespace std; int main() { string majorName; double avg = 0; float sumGrade = 0; double score[20]; float grade[20]; string input; for (int i = 0; i > majorName >> grade[i] >> input; if (input == "A+") score[i] = 4.5; else if (input == "A0") score[i] = 4.0; else if (input == "B+") score[i] = 3.5; else if (input == "B0") score[i] = 3.0; else if (input ==..

[C++] 백준 6단계 - 1316번 문제 (그룹 단어 체커)
자료구조 & 알고리즘/BOJ2023. 4. 16. 17:43[C++] 백준 6단계 - 1316번 문제 (그룹 단어 체커)

문제설명 소스코드 #include using namespace std; int main() { string input; int N; int count = 0; cin >> N; for (int i = 0; i > input; for (int j = 0; j < input.length(); ++j) { for (int u = 0; u < j; ++u) { if ((input[j] == input[u]) && (input[j] != input[j - 1])){ TF = false; break; } } } if (TF) ++count; } cout

image