首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
写出下列程序的运行结果【 】。 #include <iostream.h>. #include <fstream.h> #include <stdlib.h> void main() { fstream outfile, infile; outfile.
写出下列程序的运行结果【 】。 #include <iostream.h>. #include <fstream.h> #include <stdlib.h> void main() { fstream outfile, infile; outfile.
admin
2009-01-15
31
问题
写出下列程序的运行结果【 】。
#include <iostream.h>.
#include <fstream.h>
#include <stdlib.h>
void main()
{
fstream outfile, infile;
outfile.open("data.clat", ios:: out);
if(!outfile)
{
cout<<"Can’t open the file."<<end1;
abort();
}
outfile<<" 1234567890"<<end1;
outfile<<"aaaaaaaaa"<<end1;
outfile<<"**********"<<end1;
outfile.close();
infile.open("data. dat ", ios:: in);
if(!infile)
{
cout<<"Can’t open the file."<<end1;
abort();
}
char line[80];
int I=0;
while(!infile. eof())
{
I++;
infile.getline(line, sizeof(line));
cout<<I<<":"<<line<<end1;
}
infile.close();
}
选项
答案
1: 1234567890 2:aaaaaaaaa 3:********** 4:
解析
转载请注明原文地址:https://kaotiyun.com/show/Qtkp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下程序段for(i=0;i<10;i++)if(i>5)break;则循环结束后i的值为
设变量x和变量y都是int类型,且x=1,y=2,则printI!("%d%dt",x,y,(x,y))的输出结果是()。
有以下程序:#include<stdio.h>main(){inta1,a2;charc1,c2;scanf("%d%c%d%c",&a1,&c1,&a2,&c2);printf("%d,%c,%d,%c",a1,c1,a2,c2);}若
当a=1、b=2、c=3、d=4时,执行下面程序段后,x的值是()。if(a
下列给定程序中,fun函数的功能是:分别统计字符串中大写字母和小写字母的个数。例如,给字符串s输入:AAaaBBbb123CCcccd,则应输出:upper=6,lower=8。请改正程序中的错误,使它得出正确的结果。注意:部分源程序在文件MODI1
有以下程序#include<stdio.h>main(){inta[]={10,20,30,40},*p=a,i;for(i=0;i<=3;i++){a[i]=*p
有以下程序:#include<stdio.h>main(){FILE*pr;char*sl=’’China’’,*s2=’’Beijing’’:pf=fopen(”ABC.dat”,”wb+”);fwrite(s2,7,1,pf);r
有以下程序#include<stdio.h>main(){inti=0;i=~i;printf("%d\n",i);}程序运行后的输出结果是
随机试题
禁止使用计算机上网是预防感染计算机病毒的有效措施之一。()
Forthispart,youaresupposedtowritealetterin100~120wordsbasedonthefollowingsituation.Remembertowriteitclea
施工企业环境管理体系文件中,属于作业文件的有()。
根据劳动合同法律制度的规定,下列各项中,可导致劳动合同终止的情形有()。
审判解释与检察解释有原则性分歧时,应报请()解释或决定。
我国《合同法》规定,当事人在合同中既约定了违约金又约定了定金的,一方违约时,另一方()。
党政机关公文处理工作应该坚持的原则是()。
根据下列资料,回答111—115题。2016年天津市公共财政教育经费比上年:
Whenshewasdrivinghome,shewasstoppedbythepolicemanandwas________ofspeeding.
ComputerizedRobotsAlwaysontimeandalwaysefficient,Epistlereadsthemaileachmorning,choosethemostimportantlett
最新回复
(
0
)