欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

2.5

程序员文章站 2022-03-26 14:03:52
...
#include<iostream>
#include<fstream>
#include<string>
#include<vector>
using namespace std;
int main()
{
	vector<string> v;
	ifstream in("2_5txt.txt");
	string line;
	while(getline(in,line)){
		v.push_back(line);
	}
	for(int i = v.size()-1;i >= 0;i--)
		cout << i << " : " << v[i] << endl;
		
	cin.get();
}

txt

Tsinghua is the best
I'm the best
hhh
mabaoguo

the young man bujiangwude
qu tou

touxi
wo

69sui de laotongzhi
相关标签: # C++编程