[알고리즘] 백준 10173 - 니모를 찾아서 (C++)
[문제 링크] : https://www.acmicpc.net/problem/10173#include #include #include using namespace std;int main(){ string S; while(true){ getline(cin, S); if(S == "EOI"){ break; } bool flag = 0; transform(S.begin(), S.end(), S.begin(), ::tolower); if(S.length() > 3){ for(int i=0; i