“CPP odczytane z pliku” Kod odpowiedzi

C Pliki

// basic file operations
#include <iostream>
#include <fstream>
using namespace std;

int main () {
  ofstream myfile;
  myfile.open ("example.txt");
  myfile << "Writing this to a file.\n";
  myfile.close();
  return 0;
}
White Spoonbill

C Jak odczytać z pliku

#include <fstream>
#include <iostream>

using namespace std;

int main() {
    /* You create a stream using the file in a 
     * similar way to how we use other streams.
     */
    ifstream in;
    // Open the file
    in.open("names.txt");
    if(in.fail())
        cout << "File didn't open"<<endl;

    int count = 0;
    string line;
    while (true) {
        /* Get line will work as long as there is
         * a line left. Once there are no lines 
         * remaining it will fail. 
		 */
        getline(in, line);  
        if (in.fail()) break;
        
        /* Process the line here. In this case you are
         * just counting the lines.
         */
        count ++;
    }
    
    cout << "This file has " << count << " lines." << endl;
    return 0;
}
Foolish Fish

CPP odczytane z pliku

freopen("filename.extension", "r", stdin);
Ma7moud7amdy

Odpowiedzi podobne do “CPP odczytane z pliku”

Pytania podobne do “CPP odczytane z pliku”

Więcej pokrewnych odpowiedzi na “CPP odczytane z pliku” w C++

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu