题解 | #参数解析#

https://www.nowcoder.com/practice/668603dc307e4ef4bb07bcd0615ea677

// 字符串的打印!
#include <iostream>
#include <string>
#include <vector>

using namespace std;

int main() {
	string str;
	vector<string> vct;
	getline(cin,str);
	bool in = false;
	string tmp;
	for (int i = 0; i < str.size(); i++) {
		if (str[i] == '"') {
			in = !in;
		}
		else if (str[i] == ' ' && !in) {
			vct.push_back(tmp);
			tmp.clear();
		}
		else {
			tmp += str[i];
		}
	}
    vct.push_back(tmp);
	cout << vct.size() << endl;
	for (auto e : vct) {
		cout << e << endl;
	}
	return 0;
}

全部评论

相关推荐

安静的鲸鱼offer...:神仙级别hr,可遇不可求,甚至他可能也是突然有感而发。只能说遇上是件幸事。
秋招开始捡漏了吗
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务