网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

对于下面的程序: ifstream fin(c:\test.txt) ; if(fin) cout < < "ok"; else cout < < "wrong"; if语句中的内容可以换为

A.fin. fail( ) ;

B.fin. bad( ) ;

C.fin. good( ) ;

D.fin. eof( ) ;


参考答案

更多 “ 对于下面的程序: ifstream fin(c:\test.txt) ; if(fin) cout < < "ok"; else cout < < "wrong"; if语句中的内容可以换为A.fin. fail( ) ;B.fin. bad( ) ;C.fin. good( ) ;D.fin. eof( ) ; ” 相关考题
考题 ( 16 )要建立文件流并打开当前目录下的文件 file.dat 用于输入,下列语句中错误的是A ) ifstream fin=ifstream.open ( "file.dat" ) ;B ) ifstream*fir.=new ifstream ( "file.dat" ) ;C ) ifstream fin; fin.open ( "file.dat" ) ;D ) ifstream *fin=new ifstream ( ) ; fin 一 open ( "file.dat" ) ;

考题 下列语句不能够用于打开C根目录下文件test.txt的语句是A.ifstream fin;fin.open("C:\\test.txt");B.ifstream fin("C:\\test.txt");C.A)和B)D.ifstream fin;fin("C:\\test.txt");

考题 对于下面的程序 ifstream fin(c:\test.txt); if(fin) cout<<"ok"; else cout<<"wrong"; 对于if语句中的内容可以换为A.fin.fail( ):B.fin.bad( );C.fin.good( );D.fin.eof( );

考题 要建立文件流并打开当前目录下的文件file.dat用于输入,下列语句中错误的是A.ifstream fin=ifstream.open(”file.dat”);B.ifstream*fin=new ifstream(”file.dat”);C.ifstream fin;fin.open(”file.dat”);D.ifstream*fin=new ifstream();fin-open(”file.dat”);

考题 要建立文件流并打开当前目录下的文件6le.dat用于输入,下列语句中错误的是( )。A.ifstream fin=ffstream.open(”file.dat”);B.ifstream*fin=new ifstream(”file.dat”);C.ifstream fin;fin.open(”file.dat”);D.ifstream*fin=new ifstream;fin-open(”file.dat”);

考题 对于下面的程序 ifstream fin(C:\test.tXt); if(fin) cout<<"ok"; else cout<<"wrong"; 对于if语句中的内容可以换为A.fin.fail() ;B.fin.bad() ;C.fin,good() ;D.fin.eof();

考题 下列语句不能够用于打开C根目录下文件test.txt的语句是( )A.ifstream fin;fin.open(″C:\\\\test.txt″); B.ifstream fin(″C:\\\\test.txt″); C.A和B D.ifstream fin;fin(″C:\\\\test.txt″);

考题 下面程序代码中fin为istream流类对象,并打开了一个文件, …… while(fin) { fin>>ch>>math>>eng>>phy; { // 若读取文件数据正常 float avg=1.0*(math+eng+phy)/3; } }

考题 17、以下程序段的输出结果是()。 int a=2,b=3,c=4; if(c=a+b) cout<<"OK!”; else cout<<"NO!”;