TA的每日心情 | 无聊 昨天 09:47 |
---|
签到天数: 528 天 连续签到: 1 天 [LV.9]测试副司令
|
1测试积点
- #include <bits/stdc++.h>
- #include <string>
- using namespace std;
- int main()
- {
- string s;
- while(getline(cin,s))
- {
- vector<string> data;
- for(int i=0;i<s.size();i++)
- {
- int pos=i,cnt=0;
- while(s[i]!=' ')
- {
- i++;
- cnt++;
- }
- data.push_back(s.substr(pos,cnt));//奇数个AC 偶数个参数报错 数组越位 测试用例:xcopy /s c:\\ d:\\
- //data.push_back(s.substr(pos,cnt++));//反之 偶数AC 奇数报错
- }
- for(auto it:data) cout<<it<<endl;
- }
- return 0;
- }
-
复制代码- data.push_back(s.substr(pos,cnt));//奇数个AC 偶数个参数报错 数组越位 测试用例:xcopy /s c:\\ d:\\
- //data.push_back(s.substr(pos,cnt++));//反之 偶数AC 奇数报错
复制代码
|
|