[职称英语等级考试模拟题理工类AB级]第1部分 词汇 选择(第1-15题,每题1分,共15分,建议10分钟以内完成)下面共有15句子,每个句子均有一个词或短语划有底横线,请从每个句子后面所给的四个选项中选择一个与划线部分意义...+阅读
☆题目11 程序prog1.c的功能是:把 s 字符串中的所有字母改写成该字母的下一个字母,字母z改写成字母a。要求大写字母仍为大写字母,小写字母仍为小写字母,其它字符不做改变。
请考生编写函数chg(char *s)实现程序要求,后调用函数readwritedat( )把结果输出到文件bc1.out中。
例如:s 字符串中原有的内容为:mn.123zxy,则调用该函数后,结果为:no.123ayz。
注意:部分源程序存在文件prog1.c文件中。
请勿改动主函数main( )和输出数据函数readwritedat()的内容。
&emspinclude
&emspinclude
&emspinclude
&emspinclude
&emspdefine n 81
void readwritedat();
void chg(char *s)
{int i;
for(i=0;i if(s[i]=='z'
s[i]=='z') s[i]-=25; else if(s[i]>='a'
}
main( )
{
char a[n];
clrscr();
printf("enter a string : "); gets(a);
printf("the original string is : "); puts(a);
chg(a);
printf("the string after modified : ");
puts (a);
readwritedat() ;
}
void readwritedat()
{
int i ;
char a[n] ;
file *rf, *wf ;
rf = fopen("bc1.in", "r") ;
wf = fopen("bc1.out", "w") ;
for(i = 0 ; i< 50 ; i++) {
fscanf(rf, "%s", a) ;
chg(a) ;
fprintf(wf, "%s\n", a) ;
}
fclose(rf) ;
fclose(wf) ;
}
以下为关联文档:
职称英语等级考试模拟题综合类AB级第1部分 词汇 选择(第1-15题,每题1分,共15分,建议10分钟以内完成)下面共有15句子,每个句子均有一个词或短语划有底横线,请从每个句子后面所给的四个选项中选择一个与划线部分意义...
2009年度全国职称外语等级考试用书目录书 名 单价(元) 订数(册) 全国专业技术人员职称英语等级考试大纲 20 全国专业技术人员职称日语等级考试大纲 18 全国专业技术人员职称俄语等级考试大纲 11 全国专业技术人员职称...
全国职称外语等级考试综合类概括大意7PASSAGE 14 Earthquake Every year earthquakes are responsible for a large number of deaths and a vest amount of destruction in various parts of the world. Mos...
全国职称外语等级考试综合类概括大意2PASSAGE 3 Science Fiction Amongst the most popular books being written today are those which are usually classified as science fiction. Hundreds of titles ar...
全国职称外语等级考试综合类概括大意3PASSAGE 5 Recreation and Sports “All work and no play makes Jack a dull boy” is a popular saying in the United States. Other countries he similar sayings....
全国职称外语等级考试综合类概括大意6PASSAGE 12 Adult Education Voluntary learning in anized courses by mature men and women is called adult education. Such education is offered to make people a...
全国职称外语等级考试综合类概括大意4PASSAGE 8 Radio and Television There are few homes in Britain today that do not he either a radio or television set. Both of them he bee an essential part of...
全国职称英语等级考试阅读题Passage 2 Football is, I believe, the most popular game in England: one has only to go to one of the important matches to see this. Rich and poor, young and old...
全国职称外语等级考试综合类概括大意1PASSAGE 1 Successful Language Learners Some people seem to he a knack for learning languages. They can pick up new vocabulary, master rules or grammar, and lea...