Title:
/* Revise the loop that printed the first paragraph in text
* to instead change the elements in text that correspond
* to the first paragraph to all uppercase.
*由于目前进度,没有直接从text文本中获取输入,基本实现即使从CLI获取字符串输入(text),然后将第一段非空的字符串大写输出
*/
1)问题描述:
调试过程中发现,当输入多行字符串都为空值时最后在输出时候会出现“段错误”。
修改后源代码如下:
#include <iostream>
#include <string>
#include <vector>
using std::cout;
using std::cin;
using std::endl;