网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
以下程序输出到文件test.txt里的内容是: fo = open('test.txt', 'w') x = ['不负', '韶华'] fo.writelines(x) fo.close()
参考答案和解析
A
更多 “以下程序输出到文件test.txt里的内容是: fo = open('test.txt', 'w') x = ['不负', '韶华'] fo.writelines(x) fo.close()” 相关考题
考题
执行以下程序后, test.txt 文件的内容是 ( 若文件能正常打开 )#include stdio.hmain(){ FILE *fp;char *s1="Fortran",*s2="Basic";if((fp=fopen("test.txt","wb ” ))==NULL){ printf("Can't open test.txt file\n");exit(1);}fwrite(s1,7,1,fp); /* 把从地址 s1 开始的 7 个字符写到 fp 所指文件中 */fseek(fp,0L,SEEK_SET); /* 文件位置指针移到文件开头 */fwrite(s2,5,1,fp);fclose(fp);}A)BasicanB)BasicFortranC)BasicD)FortranBasic
考题
若磁盘上已存在某个文本文件,其全路径文件名为 d:\ncre\test.txt ,下列语句中不 能打开该文件的是A . ifstream file("d:\ncre\test.txt") ;B . ifstream file("d:\ncre\test.txt");C . ifstream file; file.open("d:\ncre\test.txt");D . ifstream* pFile=new ifstream("d:\ncre\test.txt");
考题
执行以下程序后,test.txt文件的内容是(若文件能正常打开)( )。includemain(){FILE*fp;c
执行以下程序后,test.txt文件的内容是(若文件能正常打开)( )。 #include<stdio.h> main() { FILE*fp; char*s1="Fortran",*s2="Basic"; if((fp=fopen("test.txt","wb"))==NULL) { printf("Can't open test.txt file\n");exit(1);} fwrite(s1,7,1,fp);/*把从地址s1开始的7个字符写到fp所指文件中*/ fseek(fp,0L,SEEK_SET);/*文件位置指针移到文件开头*/ fwrite(s2,5,1,fp); fclose(fp); }A.BasicanB.BasicFortranC.BasicD.FortranBasic
考题
( 34 )设有语句: Open "d:\Test.txt" For Output As #1 ,以下叙述中错误的是A )若 d 盘根目录下无 Test.txt 文件,则该语句创建此文件B )用该语句建立的文件的文件号为 1C )该语句打开 d 盘根目录下一个已存在的文件 Test.txt ,之后就可以从文件中读取信息D )执行该语句后,就可以通过 Print # 语句向文件 Test.txt 中写入信息
考题
设有语句:Open "d:\Test.txt" For Output As #1,以下叙述中错误的是______。A.若d盘根目录下无Test.txt文件,则该语句创建此文件B.用该语句建立的文件的文件号为1C.该语句打开d盘根目录下一个已存在的文件Test.txt,之后就可以从文件中读取信息D.执行该语句后,就可以通过Print#语句向文件Test.txt中写入信息
考题
要以读方式打开D盘根目录上的一个顺序文件 Test.txt,应使用的语句是( )。
A、Open "Test.txt" For Output As #1B、Open "D:\Test.txt" For Input As #1C、Open "D:\Test.txt" For Output As #1D、Open "Test.txt" For Input As #1
考题
执行以下程序后,test.txt文件的内容是(若文件能正常打开) ()。include include
执行以下程序后,test.txt文件的内容是(若文件能正常打开) ( )。#include <stdio.h>#include <stdlib.h>main( ){ FILE * fp; char * s1 = "Fortran" , * s2 = "Basic"; if((fp = fopen( "test. txt" ," wb" )) = = NULL) { prinff( "Can't open test. txt file \n"); exit(1); } fwrite( s1 ,7,1 ,fp); /* 把从地址s1开始到7个字符写到fp所指文件中*/ fseek(fp,OL,SEEK_SET); /*文件位置指针移到文件开头*/ fwrite (s2,5,1,fp); felose (fp);}A.BasieanB.BasieFortranC.BasicD.FortranBasie
考题
下面的程序执行后,文件test.txt中的内容是() include void fun(char*
下面的程序执行后,文件test.txt中的内容是 ( ) # include<stdio.h> void fun(char*<fname,char * st) { FILE*myf;int i; myf=fopen(fname,"w"); for(i=0;i<strlen(st);i+ +) fputc(st[i],myf); fclose (myf); } main( ) { fun("test","new word"); fun("test","hello"); }A.helloB.new worldhello,C.new worldD.hello,rld
考题
下列语句不能够用于打开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");
考题
下面的程序执行后,文件test.txt中的内容是______。 include void fun(char *fname,char
下面的程序执行后,文件test.txt中的内容是______。 #include<stdio.h> void fun(char *fname,char *st) { FILE*myf;int i; myf=fopen("test.txt","w"); for(i=0;i<strlen(st);i++) fputc(st[i],myf); fclose(myf); } main() { fun("test","new one"); fun("test","hello,"); }A.hello,B.new onehello,C.new oneD.hello,ne
考题
以下程序用来判断指定文件是否能正常打开,请填空。 include main() {FILE*fp;if(((fp=fo
以下程序用来判断指定文件是否能正常打开,请填空。include<stdio.h>main(){FILE*fp;if(((fp=fopen("test.txt","r"))=【 】))printf("未能打开文件!\n");elseprintf("文件打开成功!\n");}
考题
若磁盘上已存全路径文件名为c:\ctest\test.txt的文件,下面语句中不能打开该文件的是( )。A.ifstream *pFile=new ifstream("c:\\ctest\\test.txt");B.ifstream file("c:\\ctest\\test.txt");C.ifstream file;file.open("c:\\ctest\\test.txt");D.ifstream file("c:\etest\test.txt");
考题
设文件test.txt中原已写入字符串Begin,执行以下程序后,文件中的内容为【 15 】 。#include stdio.hmain( ){ FILE *fp;fp= fopen( "test.txt”, ”w+”);fputs( "test",fp);fclose(fp);}
考题
若目前D盘根目录下并不存在test.txt文件,则下列打开文件方式不会自动创建test,txt文件的是( )。A.ifstreamfin;fin.open("d:\\test.txt",iso_base::in);B.fstreamfi0;ri0.open("d:\\test.txt",is0_base::out);C.ofstream。fort;lout.open("d:\\test.txt",ios_base::out);D.ofstreamfout;fout.open("d:\\test.txt",is0_base::app);
考题
以下程序运行后,屏幕显示File open error!,则可能的原因是()。
A.当前工作目录下有test.txt文件,但test.txt文件太大B.test.txt文件不能关闭C.当前工作目录下没有test.txt文件D.当前工作目录下有test.txt文件,但test.txt文件太小
考题
若磁盘上已存在某个文本文件,其全路径文件名为d:\ncre\test.txt,下列语句中不能打开该文件的是A.ifstream file("d:\ncre\test.txt");B.ifstream file("d:\\ncre\\test.txt");C.ifstream file;file.open("d:\\ncre\\test.txt");D.ifstream* pFile=new ifstream("d:\\ncre\\test.txt");
考题
执行以下程序后,test.txt文件的内容是(若文件能正常打开)______。 #include <stdio.h> main() { FILE *fp; char *s1="Fortran",*s2="Basic"; if((fp=fopen("test.txt","wb"))=NULL) { printf("Can't open test.txt file\n"); exit(1);} fwrite(s1,7,1,fp); /* 把从地址s1开始的7个字符写到fp所指文件中*/ f seek(fp, 0L,SEEK_SET);/*文件位置指针移到文件开头*/ fwrite(s2,5,1,fp); fclose(fp); }A.BasicanB.BasicFortranC.BasicD.FortranBasic
考题
若磁盘上已存在某个文本文件,其全路径文件名为d:\shiti\tes.txt,下列语句中不能打开该文件的是( )。A.ifstream file("d:\shiti\test.txt");B.ifstream file("d:\\shiti\\test.txt");C.ifstream file;file.open("d:\\shiti\\test.txt");D.ifstream* pFile = new ifstream("d:\\shiti\\test.txt");
考题
要向已有数据的c:/test/test.txt文件添加数据,正确的文件打开命令是()。A、Open〞c:/test/test.txt〞ForAppendAs#512B、Open〞c:/test/test.txt〞ForAppendAs#511C、Open〞c:/test/test.txt〞ForOutputAs#511D、Open〞c:/test/test.txt〞ForOutputAs#512
考题
单选题有以下程序段:
FILE*fp;
if((fp=fopen(test.txt,w))==NULL)
{
printf(不能打开文件!);
exit(0);
}
else
printf(成功打开文件!);
若指定文件test.txt不存在,且无其他异常,则以下叙述错误的是( )。A
输出“不能打开文件!”B
输出“成功打开文件!”C
系统将按指定文件名新建文件D
系统将为写操作建立文本文件
考题
单选题若目前D盘根目录下并不存在test.txt文件,则下列打开文件方式不会自动创建test.txt文件的是( )。A
ifstream fin;fin.open(“d:\\test.txt”,ios_base::in);B
fstmam fin;fin.open(“d:\\test.txt”,ios_base::out);C
ofstream fout;fout.open(“d:\\test.txt”,ios_base::out);D
ofstream fout;fout.open(“d:\\test.txt”,ios_base::app);
考题
单选题要向已有数据的c:/test/test.txt文件添加数据,正确的文件打开命令是()。A
Open〞c:/test/test.txt〞ForAppendAs#512B
Open〞c:/test/test.txt〞ForAppendAs#511C
Open〞c:/test/test.txt〞ForOutputAs#511D
Open〞c:/test/test.txt〞ForOutputAs#512
考题
多选题如果目标文件存在,下面()语句建立的TextStream对象可以读取文件。ASet tsm=fso.OpenTextFile(C:///inetpub/wwwroot/asptemp/chapter10/test.txt,1,True)BSet tsm=fso.OpenTextFile(C:///inetpub/wwwroot/asptemp/chapter10/test.txt,1)CSet tsm=fso.OpenTextFile(C:///inetpub/wwwroot/asptemp/chapter10/test.txt)DSet tsm=fso.OpenTextFile(C:///inetpub/wwwroot/asptemp/chapter10/test.txt,,True)
考题
单选题有以下程序段:
FILE*fp;
if((fp=fopen(test.txt,w))==NULL)
{
printf(不能打开文件!);
exit(0);
}
else
printf(成功打开文件!);
若文件test.txt已存在,则以下叙述正确的是( )。A
程序运行后,文件test.txt中的原有内容将全部消失B
程序运行时,会因文件存在而出错C
对文件test.txt进行写操作后,可以随机进行读取D
对文件test.txt写入的内容总是被添加到文件尾部
热门标签
最新试卷