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

c++单行字符串的求和(代码教程)

程序员文章站 2022-07-05 22:03:55
c++单行字符串的求和(代码教程) #include #include #include

c++单行字符串的求和(代码教程)

#include<iostream>
#include <string>
#include <sstream>
using namespace std;
int main(){
  string line;
   while(getline(cin,line)){      // 将整行数据(连同空格)写入line中,cin>>方式输入string时遇空格停止输入
       int sum=0,x;
       stringstream ss(line);       //将line创建字符流串ss
               while(ss>>x){           //读取ss 到 x
               sum+=x;
          }
           cout<<sum<<endl;
       }
    return 0;
}

getline()是定义在<string>头文件中,功能是取一行字符串,读到换行符\n结束,并且抛弃换行符,如果需要读取字符,则接着下一行读取。

getline(cin,str);第一个参数是输入流对象,第二个参数是字符串对象.

stringstream,由iostream派生而来,提供读写string的功能。