- 相关推荐
2016最新全国计算机四级机试试题及答案
计算机四级指的是全国计算机等级考试的最高级别,科目种类有:四级操作系统原理、四级计算机组成与接口、四级数据库原理、四级软件工程、四级计算机网络。为帮助考生们更好通过考试,yjbys特地为大家准备了以下四级模拟考试题,希望大家喜欢!
1./* 请编写一个函数changeStr(char *s),函数的功能是把s串中所有的字母改写成该字母的下一个字母,字母z改写成字母a。大写仍为大写字母,小写字母仍为小写字母,其它的字符不变。函数ReadWrite()实现从文件in2.dat中读取两个字符串,并调用函数changestr(),最后把结果输出到文件out2.dat中。
注意:部分源程序存在文件PROG1.C中。请勿改动主函数main()和其它函数中的任何内容,仅在函数changeStr()的花括号中填入你编写的若干语名。*/
#include
#include
#include
#include
#define N 81
changeStr ( char *s )
{
}
main( )
{
char a[N] ;
clrscr( ) ;
printf ( “Enter a string : ” ) ; gets ( a ) ;
printf ( “The original string is : ” ) ; puts( a ) ;
changeStr ( a ) ;
printf ( “The string after modified : ”) ;
puts ( a ) ;
ReadWrite( ) ;
}
ReadWrite( )
{
int i ;
char a[N] ;
FILE *rf, *wf ;
rf = fopen(“in2.dat”, “r”) ;
wf = fopen(“out2.dat”, “w”) ;
for(i = 0 ; i 《 10 ; i++) {
fscanf(rf, “%s”, a) ;
changeStr(a) ;
fprintf(wf, “%s ”, a) ;
}
fclose(rf) ;
fclose(wf) ;
}
2./* 程序PROG1.C的功能是:利用以下所示的简单迭代方法求方程:
cos(x)-x=0的一个实根。
Xn+1=cos(Xn)
迭代步骤如下:
(1) 取x1初步值为0.0;
(2) x0=x1,把x1,把x1的值赋给x0;
(3) x1=cos(x0),求出一个新的x1;
(4) 若x0-x1的绝对值小于0.000001,执行步骤(5),否则执行步骤(2);
(5) 所求x1就是方程cos(x)-x=0的一个实根,作为函数值返回。
请编写函数countValue()实现程序的要求,最后调用函数writeDAT()把结果输出到文件out4.dat中。
注意:部分源程序存在文件PROG1.C中,请勿改动主函数main()和输出数据函数WriteDAT()的内容。 */
#include
#include
#include
float countValue()
{
}
main()
{
clrscr();
printf(“实根=%f ”, countValue());
printf(“ %f ”,cos(countValue())-countValue());
writeDAT();
}
writeDAT()
{
FILE *wf ;
wf=fopen(“out4.dat”,“w”) ;
fprintf(wf, “%f ”, countValue()) ;
fclose(wf) ;
}
3./* 已知在文件IN.DAT中存有若干个(个数《200)四位数字的正整数,函数ReadDAT()读取这些正整数并存入数组xx中。请编制函数CalValue()其功能要求是:
1.求出这个文件中共有多少个正整数totNum;2.求出这些数中的各位数字之和是奇数的数的个数totCnt,以及不满足此条件的所有数的算术平均值totPjz,最后调用函数WriteDAT()把所求的结果输出到文件OUT8.DAT中。
注意:部分源程序存放在PROG1.C中。
请勿改动主函数main(),读数据函数ReadDAT()和输出数据函数WriteDAT()的内容。 */
#include
#include
#define MAXNUM 200
int xx[MAXNUM] ;
int totNum = 0 ; /* 文件IN.DAT中共有多少个正整数 */
int totCnt = 0 ; /* 符合条件的正整数的个数 */
double totPjz = 0.0 ; /* 平均值 */
int ReadDat(void) ;
void WriteDat(void) ;
void CalValue(void)
{
}
void main()
{
clrscr() ;
if(ReadDat()) {
printf(“数据文件IN.DAT不能打开!�07 ”) ;
return ;
}
CalValue() ;
printf(“文件IN.DAT中共有正整数=%d个 ”, totNum) ;
printf(“符合条件的正整数的个数=%d个 ”, totCnt) ;
printf(“平均值=%.2lf ”, totPjz) ;
WriteDat() ;
}
int ReadDat(void)
{
FILE *fp ;
int i = 0 ;
if((fp = fopen(“in.dat”, “r”)) == NULL) return 1 ;
while(!feof(fp)) {
fscanf(fp, “%d,”, &xx[i++]) ;
}
fclose(fp) ;
return 0 ;
}
void WriteDat(void)
{
FILE *fp ;
fp = fopen(“OUT8.DAT”, “w”) ;
fprintf(fp, “%d %d %.2lf ”, totNum, totCnt, totPjz) ;
fclose(fp) ;
}
4./* 编写一个函数findstr(),该函数统计一个长度为2的子字符串在另一个字符串中出现的次数。例如,假定输入的字符串为“asd asasdfg asd as zx67 asd mklo”,子字符串为“as”,则输出6。 函数ReadWrite()实现从文件in1.dat中读取两个字符串,并调用函数findStr(),最后把结果输出到文件out1.dat中。
注意:部分源程序存在文件PROG1.C中。请勿改动主函数main()和其它函数中的任何内容,仅在函数findStr()的花括号中填入你编写的若干语句。*/
#include
#include
#include
int findStr(char *str,char *substr)
{
}
main()
{
char str[81], substr[3] ;
int n ;
clrscr() ;
gets(str) ;
gets(substr) ;
puts(str) ;
puts(substr) ;
n=findStr(str, substr) ;
printf(“n=%d ”, n) ;
ReadWrite() ;
}
ReadWrite()
{
char str[81], substr[3], ch;
int n, len, i = 0;
FILE *rf, *wf ;
rf = fopen(“in1.dat”, “r”) ;
wf = fopen(“out1.dat”, “w”) ;
while(i 《 5) {
fgets(str, 80, rf) ;
fgets(substr, 10, rf) ;
len = strlen(substr) - 1 ;
ch = substr[len] ;
if(ch == ’ ’ || ch == 0x1a) substr[len] = 0 ;
n=findStr(str, substr);
fprintf(wf, “%d ”, n) ;
i++ ;
}
fclose(rf) ;
fclose(wf) ;
}
5./* 请编写函数Void countValue(int *a,int *n),它的功能是:求出1到1000之内能被7或11整除但不能同时被7和11整除的所有整数,并放在数组a中,然后通过n返回这些数的个数。
注意:部分源程序存入在PROG1.C中。
请改动主函数main()和输入输出数据函数WriteDAT()的内容。*/
#include
int cnt, sum ;
void countValue()
{
}
void main()
{
cnt = sum = 0 ;
countValue() ;
printf(“素数的个数=%d ”, cnt) ;
printf(“满足条件素数值的和=%d”, sum) ;
writeDAT() ;
}
writeDAT()
{
FILE *fp ;
fp = fopen(“OUT6.DAT”, “w”) ;
fprintf(fp, “%d %d ”, cnt, sum) ;
fclose(fp) ;
}
【最新全国计算机四级机试试题及答案】相关文章:
2015年全国英语四级试题及答案12-12
全国英语四级听力通关试题及答案11-22
计算机四级软测模拟试题及答案10-21
全国计算机一级试题及答案01-06
最新四级英语语法考点试题及答案11-20
全国计算机一级office试题及答案03-30
最新英语四级翻译考试模拟试题及答案11-22
2015全国计算机四级考试《网络工程师》模拟试题及答案(五)03-30
计算机四级《网络工程师》试题及答案08-27