读入一段文本到vector对象,每个单词存储为vector的一个元素.把vector对象中每个单词转化为大写字母.输出vector对象中转化后的元素,每八个单词为一行输出
问题描述:
读入一段文本到vector对象,每个单词存储为vector的一个元素.把vector对象中每个单词转化为大写字母.输出vector对象中转化后的元素,每八个单词为一行输出
答
#include #include #include #include #include int main(){std::vector text;std::string line;std::string word;std::string filepath="c:\\cc.txt";//要读取的文件std::ifstream fin(filepath.c_str());while(!fi...