tstio.c

来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 51 行

C
51
字号
#include        <fstream.h>
#include        <strstream.h>
#include        <stdlib.h>
#include        "splash.h"
#include        "assoc.h"

int main()
{
ifstream fin("t.txt");
ofstream fout("t2.txt");

SPString s;
SPStringList l;

    while(fin >> s){
        cout << "read in string: " << s << endl;
        fout << s << endl;
    }
    
    fin.close();
    fout.close();
    
    fin.open("t.txt");
    
    fin >> l;
    
    cout << "List =" << endl << l << endl;

#if 1
    strstream ss, iss;
    ss << "one\n" << "two\nthree\nfour\n";
    ss >> l;
    cout << l << endl;
    SPList<int> il;
    iss << 1 << " " << 2 << " " << 3 << " " << 4 << endl;
    iss << "5 6 7 8 9" << endl;
    ((istream&)(iss)) >> il;
    cout << il << endl;
#endif


    cout << "Start Typing:" << endl;
    while(cin >> s){
        cout << "read in string: " << s << endl;
    }

    
    
    return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?