728x90
# 백준 2941 크로아티아 알파벳
#include <iostream>
#include <cstring>
#include <string.h>
using namespace std;
int main() {
char s[100];
int cnt = 0;
cin >> s;
for (int i = 0; i < strlen(s); i++) {
if ((s[i] == '-') | (s[i] == '=')) // c=, c-, s=, z=, d-
cnt += 1;
if (((s[i] == 'd') & (s[i + 1] == 'z')) & (s[i + 2] == '=')) // dz=
cnt += 1;
if (((s[i] == 'l') | (s[i] == 'n')) & (s[i + 1] == 'j')) // lj, nj
cnt += 1;
}
cout << strlen(s) - cnt;
}
반응형
'전공 공부 > C++ 튜터링' 카테고리의 다른 글
C++ 튜터링 3주차 (0) | 2021.03.26 |
---|---|
C++ 튜터링 2주차 (0) | 2021.03.21 |
백준 10809 알파벳 찾기 (0) | 2021.03.20 |
백준 2751 수 정렬하기 2 (0) | 2021.03.20 |
백준 2750 수 정렬하기 (0) | 2021.03.20 |