首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
使用VC6打开考生文件夹下的源程序文件modi2.cpp。请完成函数fun(char*s),该函数完成以下功能: (1)把S中的大写字母转换成小写字母,把其中的小写字母转换成大写字母。并且在函数中调用写函数WriteFile()将结果输出到modi2.tx
使用VC6打开考生文件夹下的源程序文件modi2.cpp。请完成函数fun(char*s),该函数完成以下功能: (1)把S中的大写字母转换成小写字母,把其中的小写字母转换成大写字母。并且在函数中调用写函数WriteFile()将结果输出到modi2.tx
admin
2016-10-28
28
问题
使用VC6打开考生文件夹下的源程序文件modi2.cpp。请完成函数fun(char*s),该函数完成以下功能:
(1)把S中的大写字母转换成小写字母,把其中的小写字母转换成大写字母。并且在函数中调用写函数WriteFile()将结果输出到modi2.txt文件中。
例如:s="helloTEST",则结果为:s="HELLOtest"
(2)完成函数WriteFile(char*s),把字符串输入文件中。
提示:打开文件使用的第二参数为ios base::binary|ios_base::app。
注意:不要改动main()函数,不得增行或删行,也不得更改程序的结构。
#include<iostream>
#include<fstream>
#include<cmath>
USing namespace std;
void WriteFile(char*s)
{
}
void fun(char*s)
{
}
void ClearFile()
{
ofstream out1;
out1.open("modi2.txt");
out1.close();
}
int main()
{
ClearFile();
char s[1024];
cout<<"please input a string:"<<endl;
cin.getline(s,1024);
fun(s);
return0;
}
选项
答案
(1)void WriteFile(char*s)中的命令语句: ofStream out1; out1.open("modi2.txt",ios_base::binary|ios_base::app);//打开文件modi2 out1<<s;//写入字符串s out1.close(); (2)void fun(char*s)中的命令语句: for(int i=0;S[i]!=0;1++)//循环判断每一个字符 { if(s[i]>=’A’&&s[i]<=’Z’)//如果是大写字符,转换为小写字符 { s[i]=s[i]-’A’+’a’;//’s[i]-’A’+’a’等于字符s[i]+32’ } Else if(s[i]>=’a’&&s[i]<=’z’)//如果是小写字符,转换为大写字符 { s[i]=s[i]-’a’+’A’;//’s[i]-’a’+’A’等于字符s[i]-32 } } WriteFile(s);
解析
(1)在WriteFile(char*s)函数中,利用标准流ofstream实现字符串写入文件modi2.txt。
(2)在fun函数中,利用for循环逐个判断字符是大写还是小写。
(3)如果是大写,那么加上32实现大写转换为小写。否则,就减去32,实现小写到大写的转换。最后调用前面实现的WriteFile函数,将字符串写入文件。
转载请注明原文地址:https://jikaoti.com/ti/SME0FFFM
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下程序:#include<iostream>usingnamespacestd;template<typenameT>Ttotal(T*data){Ts=0;While(*dat
有如下的程序:#include<iostream>usingnamespacestd;classAT{friendostream&operator<<(ostream&,AT);}at;os
有以下程序:#include<iostream.h>voidmain(){intx=10,y=10;for(inti=0;x>8;y=++i)cout<<x--<<","<<y<<","
下列有关指针的用法中错误的是()。
在C++语言中函数返回值的类型是由()决定的;
对类的构造函数和析构函数描述正确的是()。
若已知charstr[20];,有语句cin>>str;当输入为:Thisisaprogram所得的结果是str=()。
下列关于函数模板实参不能省略的情况说明不正确的是
随机试题
下列各项中,不属于三阴交穴主治病证的是
各种账务处理程序之间的区别在于()。
请你写出美术教学基本教学环节:________、________、________、________、________、________和________等。
社区警务战略的要求是:以社区为依据,立足社区,警民共建。()
YoucancommunicateWithit.53.Youcanflyinit.
FarewellSpeech1."Specialneeds"Commonlydefinedbywhatachildcan’tdoBymilestonesunmetBy【T1】______Bye
Whatdoesthedemanderneed?Whatdiscountdoesthecompanyoffer?
You’dthinkPaulineHordwouldhaveservedhertimebynow.Afterall,sherecentlycelebratedher90thbirthday,andbythetim
PartⅡReadingComprehension(SkimmingandScanning)Directions:Inthispart,youwillhave15minutestogooverthepassageq
Ithasbeensaidthateveryonelivesbysellingsomething.Inthelightofthisstatement,teacherslivebyselling【C1】______,p
最新回复
(
0
)