istringstream用法

istringstream对象可以绑定一行字符串,然后以空格为分隔符把该行分隔开来。

#include
#include
using namespace std;
int main()
{
 string str, line;
 while(getline(cin, line))
 {
  istringstream stream(line);
  while(stream>>str)
   cout< } 
 return 0;
}
测试:
input:
abc   df   e              efgeg      ffg

ouput:
abc
df
e
efgeg
ffg

你可能感兴趣的:(ACM,/,ICPC)