f0306.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0306.cpp
  3. // 整行读入再分解读入
  4. //=====================================
  5. #include<iostream>
  6. #include<sstream>
  7. #include<fstream>
  8. using namespace std;
  9. //-------------------------------------
  10. int main(){
  11.   ifstream in("aaa.txt");
  12.   for(string s; getline(in, s); ){
  13.     int a, sum=0;
  14.     for(istringstream sin(s); sin>>a; sum += a);
  15.     cout<<sum<<endl;
  16.   }
  17. }//====================================
  18.