1
while(cin >> a >> b && !(a == "0" || b == "0"))//这里的 与判断结束值得学习啊
2
while((comma = str.find(',', pos)) != string::npos) { s[p++] = (atoi(str.substr(pos, comma - pos).c_str())); pos = comma + 1; }
(1)find()从字符串str 下标pos开始,查找字符串b(就是',') ,返回',' 在str 中的下标
(2)string::npos 就是没有找到的意思
(3)atoi()字符创变数字
(4)substr()子字符串
(5)c_str() string类型变c* 类型
对C++的atoi(),substr(),c_str()函数的理解http://blog.csdn.net/zhanglu5227/article/details/7895744
3 问题
:-1: error: dependent '..\untitled4\main1015.cpp' does not exist.
总是遇见这个 不存在 !!!!
解决:
就是删了build-untitled4-Desktop_Qt_5_6_0_MSVC2013_64bit-Debug文件夹
再运行就好了