解题思路:
c++ STL的string类包含了多种对字符串的处理方式。本题可用string.find()找到运算符号的位置,得到位置后用string.substr()划分数字与运算符。
注意事项:
string转换成int的方式有多种,C++中多用stringstream
参考代码:
#include <iostream> #include <string> #include <sstream> using namespace std; int toInt(string s){ int ret; stringstream stream(s); stream>>ret; return ret; } int main(){ string str; int sum = 0; while(cin>>str){ int a=0,b=0,c=0; string::size_type pos1,pos2; pos1 = str.find_first_of("+-");//找到加号或减号的位置 pos2 = str.find('=');//找到等号的位置 a = toInt(str.substr(0,pos1)); b = toInt(str.substr(pos1,pos2)); c = toInt(str.substr(pos2+1));//从位置pos2+1到最后 if(a+b==c) sum += 1; } cout<<sum<<endl; }
0.0分
38 人评分
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:1071 |
WU-字符串比较 (C++代码)浏览:824 |
WU-C语言程序设计教程(第三版)课后习题11.12 (C++代码)(想学链表的小伙伴可以看看)浏览:964 |
【绝对值排序】 (C语言代码)浏览:892 |
C语言训练-亲密数 (C语言描述,反正怎么都能对)浏览:2256 |
理财计划 (C语言代码)浏览:494 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:476 |
1134题解(求分析)浏览:795 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:1359 |
【计算两点间的距离】 (C语言代码)浏览:875 |