9.50 编写程序处理一个vector<string>,其元素都表示整数型。计算vector中所有元素之和。修改程序,使之计算表示浮点值的string之和。
程序如下:
#include#include #include using namespace std;int main(){ vector str={ "1","2","3","4"}; double sum=0.0; for(auto &s:str) sum+=stod(s); cout< <
本文共 327 字,大约阅读时间需要 1 分钟。
9.50 编写程序处理一个vector<string>,其元素都表示整数型。计算vector中所有元素之和。修改程序,使之计算表示浮点值的string之和。
程序如下:
#include#include #include using namespace std;int main(){ vector str={ "1","2","3","4"}; double sum=0.0; for(auto &s:str) sum+=stod(s); cout< <
转载地址:http://zyvyo.baihongyu.com/