LETTURA FILE
Anonymous
plain_text
08/27/2022 12:47 PM
396 B
31
Indexable
#include <stdio.h>
#include <iostream>
#include <fstream>
using namespace std;
//il nostro file si chiama "ciao.txt"
int main(){
string line;
ifstream fin("ciao.txt");
while(!fin.eof()){
getline(fin, line);
cout<<line<<endl;
}
fin.close();
return 0;
}
Editor is loading...