首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
写出下列程序的运行结果【 】。 #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
27
问题
写出下列程序的运行结果【 】。
#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);}若
下列给定程序中,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);}程序运行后的输出结果是
随机试题
国际政治中的“南北关系”是指()
IADSA的优点不包括
关于肝转移癌的CT表现,错误的是
激活的PKC能磷酸化的氨基酸残基是
房地产开发投资的经济效果主要表现为投资利润,其经济效果的大小则用销售收入、成本利润率、投资收益率等指标来衡量。()
下列关于外商投资企业注册资本的表述,正确的是()
电缆在室外直接埋地敷设时,埋设深度一般为0.8m,经过农田的电缆埋设深度不应小于( )m。
编造并传播证券交易、期货交易虚假信息罪,是指编造并且传播影响证券、期货交易的虚假信息,扰乱证券、期货交易市场,造成严重后果的行为。下列可能构成该罪的主体是( )。
张明完成了毕业论文,需要在正文前添加目录,最佳的操作方法是()。
NarratorListentoapartofalectureinanecologyclass.Whatcanbeinferredaboutplantsinthehydrologiccycle?
最新回复
(
0
)