C++データをファイルに書き込む

2208 ワード

#include 
#include     //           
using namespace std;
int main()
{   //                       data.txt   ,       1,2 ,           
    int a, b; char c;     //                 1,2     “,”
    ifstream fin("data.txt");   //    
    if (!fin)              //       ,  fail
    {
        cerr << "fail" << endl;
        return -1;
    }
    fin >> a >> c >> b;   //          
    cout << "a = " << a << endl;
    cout << "b = " << b << endl;
    fin.close();       //    
    a++; b++;
    cout << "change a = " << a << endl;
    cout << "change b = " << b << endl;
    ofstream fout("data.txt");     //    data.txt   
    fout << a << "," << b << endl;  //         
    fout.close();                  //    
    return 0;
}