#include <bits/stdc++.h>
using namespace std;
int main(){
string inp;
string s;
int ans = 0;
if(getline(cin,s)){
istringstream in(s);
while(in >> inp){
ans++;
}
}
cout < return 0;
}
'* Computer Science > C++' 카테고리의 다른 글
2차원 vector rotate (0) | 2020.05.06 |
---|---|
상대오차, 백분율차 구하기 (0) | 2019.09.16 |
cin 속도 향상 (0) | 2019.08.22 |
hw13 meeting in pnu data structure class (0) | 2018.12.07 |
data structure homework8 in pnu ds class (0) | 2018.11.01 |