C++每日一练1.按行读取文件并打印
Posted 鱼酱2333
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++每日一练1.按行读取文件并打印相关的知识,希望对你有一定的参考价值。
需求:按行读取文件并打印
#include <string>
#include <fstream>
#include <iostream>
using namespace std;
int main(int argc,char **argv)
string query;
std::ifstream in("1.txt");
while(getline(in,query))
cout<<query.size()<<query<<endl;
return 0;
以上是关于C++每日一练1.按行读取文件并打印的主要内容,如果未能解决你的问题,请参考以下文章