统计字符出现的次数
第38套试题
一、 填空题
请补充fun函数,该函数的功能是判断一个数的个位数字和百位数字之和是否等于其十位上的数字,是则返回“yes!”,否则返回”no!”。
主勿改动主函数main和其他函数中的任何内容,仅在fun函数的横线上填入所编写的若干表达式或语句。
#include
#include
char *fun(int n)
{
int g, s, b;
g = n%10;
s = n/10%10;
b = ___1___;
if ((g+b) == s)
return ___2___;
else
return ___3___;
}
main()
{
int num = 0;
printf("******Input data *******\n ");
scanf("%d", &num);
printf("\n\n\n");
printf("****** The result *******\n ");
printf("\n\n\n%s", fun(num));
}
参考答案:
1.n/100%10 2.”yes!” 3. “no!”
二、 改错题
下列给定程序中,函数fun的功能是:通过某种方式实现两个变量值的交换,规定不允许增加语句和表达式,例如变量a中的值原为8,b中的值原为3,程序运行后a中的值为3,b中的值为8。
请改正程序中的错误,使它能得出正确的结果。
注意:不要改动main函数,不得增行或删行,也不得更改程序的结构!
#include
#include
int fun(int *x, int y)
{
int t;
/********found********/
t = x; x = y;
/********found********/
return (y);
}
main()
{
int a = 3, b = 8;
printf("%d %d\n", a, b);
b = fun(&a, b);
printf("%d %d\n", a, b);
}
参考答案:
1. t = x; x = y;改为 t=*x; *x=y;
2. return y; 改为: return t;
三、 编程题
请编写函数fun,它的功能是:求出ss所指字符串中指定字符的个数,并返回此值。
例如,若输入字符串123412132,输入字符1,则输出3。
请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。
#include
#include
#include
#define M 81
int fun(char *ss, char c)
{
}
main()
{
char a[M], ch;
FILE *out;
printf("\nPlease enter a string:");
gets(a);
printf("\nPlease enter a char:");
ch = getchar();
printf("\nThe number of the char is: %d\n", fun(a, ch));
字符串长度公式out=fopen ("out.dat", "w");
strcpy(a, "The number of the char is: ");
fprintf(out, "%d", fun(a, ' '));
fclose (out );
}
参考答案:
int fun(char *ss, char c)
{int i,cnt=0;
for(i=0;i<strlen(ss);i++)
if(ss[i]==c)
cnt++;
return cnt;
}
第4套题
一、填空题:
请补充函数fun,它的功能是:计算并输出n(包括n)以内能被3或7整除的所有自然数的倒数之和。
如:在主函数中从键盘给n输入30后,输出为s=1.226323。
请勿改动主函数main()和其它函数中的任何内容,仅在fun函数的横线上填入所编写的若干语句或表达式。
#include
double fun(int n)
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论