首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有以下程序: #include <iostream.h> #include <fstream.h> #include <stdlib.h> int main() { fstream filel,file2
有以下程序: #include <iostream.h> #include <fstream.h> #include <stdlib.h> int main() { fstream filel,file2
admin
2009-02-15
22
问题
有以下程序:
#include <iostream.h>
#include <fstream.h>
#include <stdlib.h>
int main()
{
fstream filel,file2;
char line[100];
filel.open("source.txt",ios::in);
if(!file1)
{
cout<<"Can’t open file source.txt!"<<end1;
abort();
}
file2.open("dest.txt",ios::out);
if(!file2)
{
cout<<"Can’t open file dest.txt!"<<end1;
abort();
}
while(!file1.eof())
{
filel.getline(1ine,100);
file2<<line;
file2<<end1;
}
filel.close();
file2.close();
return 0;
}
此程序实现的功能是【 】。
选项
答案
将文本文件source.txt中内容复制到文本文件dest.txt中
解析
程序首先将两个文件source和dest都打开,然后通过while循环,以一行为单位进行内容的复制。
转载请注明原文地址:https://kaotiyun.com/show/Sdkp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
结构化程序设计中,下面对goto语句使用描述正确的是
有以下程序:#includemain()FTIL*fp;inti,a[6]={1,2,3,4,5,6},k;fp=fopen(”datA)dat”,“w+b”);fwrite(&a[0],sizeof(int),1,fp);
已知char*s,下面正确的语句是()。
以下结构体类型说明和变量定义中正确的是()。
关于字符常量,以下叙述正确的是()。
编写函数fun,其功能是:根据以下公式求π的值(要求精度0.0005,即某项小于0.0005时停止迭代)。程序运行后,若输入精度0.0005,则程序应输出为3.140578。注意:部分源程序给出如下。请勿改动主函数main和
软件生命周期是指()。
在面向对象方法中,不属于"对象"基本特点的是()。
下列关于逻辑运算符两侧运算对象的叙述中正确的是()。
随机试题
ThefirstsoundeverwasthesoundoftheBigBang.And,surprisingly,itdoesn’treallysoundallthatbang-like.JohnCramer,
男性,32岁,运动后突然出现右上腹部剧痛,疼痛放射至右侧中下腹部,伴恶心、呕吐,尿液呈浓茶色。查体:腹软,右下腹部深压痛,右肾区叩击痛。患者来就诊时,应首先做的检查是
在执行医嘱时,发现主治医生的处方有问题,护士正确的做法是
中医学整体观念的含义是()
甲承包商通过投标获得了某建设项目的施工总承包任务,并根据《建设工程施工合同(示范文本)》(GF—99—0201)签订了总承包合同。甲承包商将主体结构工程的施工劳务分包给了乙劳务分包公司,并根据《建设工程施工劳务分包合同(示范文本)》(GF一2003—021
下列关于共同共有的说法不正确的是( )。
Teachingisn’tforeveryone,___________IknowImadetherightcareerchoice.
韦纳将人们活动成败的原因归结为六个因素,其中属于自身内在因素的是()
WhichofthefollowingreflectsthechangeofCatholicChurch?AttendanceoftheChurchhasdeclinedbecause
Today,Americancollegesanduniversitiesareunderstrongattackfrommanyquarters.Teachers,itischarged,arenotdoingag
最新回复
(
0
)