欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C++从输入流中读取字符串并根据空格拆成多个整数(代码教程)

程序员文章站 2022-03-08 23:02:10
通过调用库sstream中的stringstream类型来完成想要拆分操作: #include #include #include #include using namesp...

通过调用库sstream中的stringstream类型来完成想要拆分操作:

#include 
#include 
#include 
#include 

using namespace std;

int main(){
        vector intlist;
        string str;
        int word;
        getline(cin,str);//从输入流中读入字符串,遇到回车结束
        stringstream ss(str);
        while(ss >> word){//>>遇到空格返回整型给word
                intlist.push_back(word);
        }
}