728x90
https://www.acmicpc.net/problem/2902
#include <iostream>
#include <string>
using namespace std;
int main() {
string s;
cin >> s;
cout << s[0];
for (int i = 1; i < s.size(); i++) {
if (s[i] >= 65 && s[i] < 91) cout << s[i];
}
return 0;
}
728x90
'알고리즘 문제' 카테고리의 다른 글
[백준] 10816번 숫자 카드 2 (0) | 2020.02.13 |
---|---|
[백준] 1920번 수 찾기 (0) | 2020.02.13 |
[백준] 4659번 비밀번호 발음하기 (0) | 2020.02.12 |
[백준] 4690번 완전 세제곱 (0) | 2020.02.12 |
[백준] 1592번 영식이와 친구들 (0) | 2020.02.12 |