Dolphins의 HelloWorld

[백준]Baekjoon1152(String 활용) 본문

Algorithm/baekjoon문제풀이

[백준]Baekjoon1152(String 활용)

돌핀's 2018. 6. 24. 10:41


풀이

  

 - 문자열을 받을 때 띄어쓰기 전까지 받아지는 속성을 이용하면 쉽게 구현이 가능하다.

   

아래는 실제 구현 코드이다.

#include <string>

#include <iostream>
using namespace std;
int main()

{
string s;

int count = 0;

while (cin >> s) {

count++;

}

cout << count << '\n';
}



Comments