填空题
请补充fun函数,该函数的功能是:分类统计一个字符串中元音字母和其它字符的个数(不区分大小写)。
例如,输入aeiouAUpqr,记过为A:2 E:1 I:1 O:1 U:2 other:3
注意:部分源程序给出如下
请勿改动主函数main和其他函数中的任何内容,仅在fun函数的横线上填入所编写的若干表达式或语句。
试题程序:
#include
#include
#define N 100
void fun(char *str, int bb[])
{
char *p = str;
int i = 0;
for (i=0; i<6; i++)
___1___;
while (*p)
{
switch (*p)
{
case 'A':
case 'a':
bb[0]++;
break;
case 'E':
case 'e':
bb[1]++;
break; 来源:考试大
case 'I':
case 'i':
bb[2]++;
break;
case 'O':
case 'o':
bb[3]++;
break;
case 'U':
case 'u':
bb[4]++;
break;
default:
___2___;
}
___3___
}
}
main()
{
char str[N], ss[5] = "AEIOU";
int i;
int bb[6];
printf("Input a string: \n");
gets(str);
printf("the string is: \n");
puts(str);
fun(str, bb);
for (i=0; i<5; i++)
printf("\n%c:%d", ss[i], bb[i]);
printf("\nother:%d", bb[i]);
}
第1处填空:bb[i]=0或*(bb+i)=0
第2处填空:bb[5]++或++bb[5]或bb[5]=bb[5]+1或bb[5]+=1
第3处填空:p++;或++p;或p+=1;或p=p+1;
改错题
下列给定程序中,函数fun的功能是:将长整型数中每一位上为奇数的数依次取出,构成一个新数放在t中,高位仍在高位,低位仍在低位,当s中的数为87653142时,t 中的数为7531。
请改正程序中的错误,使其能得出正确结果。
注意:不要改动main函数,不得增行或删行,也不得更改程序的结构!
试题 程序:
#include
#include
void fun(long s, long *t)
{
int d;
long s1 = 1;
/********found********/
t = 0;
while (s > 0)
{
d = s%10;
/********found********/
if (d%2 == 0)
{
*t = d*s1 + *t;
s1 *= 10;
}
s /= 10;
}
}
main()
{
long s, t;
printf("\nPlease enter s: ");
scanf("%ld", &s);
fun(s, &t);
printf("The result is: %ld\n", t);
}
第1处:t =0;应改为*t =0;
第2处:if (d%2 ==0)应改为if(d%2!=0)
北京 | 天津 | 上海 | 江苏 | 山东 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
广东 | 河北 | 湖南 | 广西 | 河南 |
海南 | 湖北 | 四川 | 重庆 | 云南 |
贵州 | 西藏 | 新疆 | 陕西 | 山西 |
宁夏 | 甘肃 | 青海 | 辽宁 | 吉林 |
黑龙江 | 内蒙古 |