728x90
https://softeer.ai/practice/7703/history?questionType=ALGORITHM
소스코드
#include <string>
using namespace std;
int main()
{
int n;
cin >> n;
string a, b;
string result;
for (int i = 0; i < n; i++)
{
cin >> a >> b;
for (int i = 0; i < a.size(); i++)
{
a[i] = toupper(a[i]);
}
size_t idx = a.find("X");
string temp = b.substr(idx, 1);
result+= toupper(temp[0]);
}
cout << result;
return 0;
}
728x90
'코딩공부 > Softeer' 카테고리의 다른 글
[Softeer/C++]Level2 바이러스 (0) | 2024.03.08 |
---|---|
[Softeer/C++]Level2 금고털이 (0) | 2024.03.08 |
[Softeer/C++]Level1 위험한 효도 (0) | 2024.03.08 |
[Softeer/C++]Level1 [한양대 HCPC 2023] Tren del Fin del Mundo (1) | 2024.03.07 |
[Softeer/C++]Level1 [한양대 HCPC 2023] 개표 (0) | 2024.03.07 |