读入一段文本到vector对象,每个单词存储为vector的一个元素。把vector对象中每个单词转化为大写字母。输出vector对象中转化后的元素,每八个单词为一行输出


#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <vector>
#include <string>

using namespace std;


int main()
{
	vector<string> text;
	string line;
	string word;

	string filepath="c:\\cc.txt";//要读取的文件
	ifstream fin(filepath.c_str());

	while(!fin.eof())
	{  
		getline(fin,line);//读行

		for (string::size_type i = 0;i < line.size(); ++i)
		{
			if(line[i]>='a' && line[i]<='z')//转大小
				line[i]-=32;
			if(line[i]==' ' || line[i]=='\t')
			{
				if(!word.empty())
				{
					text.push_back(word);
					word = "";
				}
			}
			else
				word += line[i];
		}  
		text.push_back(word);
		word = "";  
	}
	//输出
	for (string::size_type i =0; i!= text.size();++i)
	{
		cout<<text[i]<<" ";
		if(i%7==0 && i!=0)
			cout<<"\n";   
	}

	getchar();
	return 0;
}

【忘记从哪里看来的程序 了。 熟悉一下   容器vector /  文件流ifstream  / c++ 用法】

Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐