-
[1일 1백준 : 1152] 단어의 개수Programming/백준 2021. 1. 23. 18:06
편법(?)을 좀 썻다.
#include <iostream> #include <vector> int main(void) { std::string Sentance; std::vector<std::string> words; while (1) { std::cin >> Sentance; if (std::cin.eof()) break; words.emplace_back(Sentance); } std::cout << words.size() << "\n"; return 0; }
'Programming > 백준' 카테고리의 다른 글
[1일 1백준 : 5622번] 다이얼 (0) 2021.01.25 [1일 1백준 : 2908번] 상수 (0) 2021.01.24 [1일1백준 : 1157번] 단어 공부 (0) 2021.01.23 [1일 1백준 : 2675번] 문자열 반복 (0) 2021.01.21 [1일 1백준 : 10809번] 알파벳 찾기 (0) 2021.01.20