下列给定函数中,函数fun()的功能是:统计字符串中各元音字母(即A,E,I,O,U)的个数。注意:字母不分大小写。例如,输入THIs is a boot,则应输出是1 0 2 2 0。请改正程序中的错误,使它能得出正确的结果。注意:不要改动main函数,不得增行或删行,也不得更改程序的结构。试题程序:include <conio.h>include <stdio.h>/*************found**************/fun(char *s, int num[5]){ int k, i=5;for(k=0;k<i;k++)/*************found**************/num [i]=0;for{;*s;s++){ i=-l;/*************found**************/switch(s){ case 'a': case 'A':{i=0;break;}case 'e': case 'E':{i=1;break;}case 'i': case 'I':{i=2;break;}case 'o': case 'O':{i=3;break;}case 'u': case 'U':{i=4;break;}}if(i>=0)num[i]++;}}main ( ){ char s1[81]; int num1[5], i;clrscr ();printf("\nPlease enter a string: ");gets (s1);fun{s1, num1);for(i=0;i<5;i++) printf("%d",num1[i]);printf ("\n");}

下列给定函数中,函数fun()的功能是:统计字符串中各元音字母(即A,E,I,O,U)的个数。注意:字母不分大小写。例如,输入THIs is a boot,则应输出是1 0 2 2 0。

请改正程序中的错误,使它能得出正确的结果。

注意:不要改动main函数,不得增行或删行,也不得更改程序的结构。

试题程序:

include <conio.h>

include <stdio.h>

/*************found**************/

fun(char *s, int num[5])

{ int k, i=5;

for(k=0;k<i;k++)

/*************found**************/

num [i]=0;

for{;*s;s++)

{ i=-l;

/*************found**************/

switch(s)

{ case 'a': case 'A':{i=0;break;}

case 'e': case 'E':{i=1;break;}

case 'i': case 'I':{i=2;break;}

case 'o': case 'O':{i=3;break;}

case 'u': case 'U':{i=4;break;}

}

if(i>=0)

num[i]++;

}

}

main ( )

{ char s1[81]; int num1[5], i;

clrscr ();

printf("\nPlease enter a string: ");

gets (s1);

fun{s1, num1);

for(i=0;i<5;i++) printf("%d",num1[i]);

printf ("\n");

}


相关考题:

●试题四请补充函数fun(),该函数的功能是将字符串tt中的大写字母都改为对应的小写字母,其他字符不变。例如,若输入"Are you come from Sichuan?",则输入"are you come from sichuan?"。注意:部分源程序给出如下。请勿改动主函数main和其他函数中的任何内容,仅在函数fun()的横线上填入所编写的若干表达式或语句。试题程序:#includestdio.h#includestring.h#includeconio.hchar *fun(char tt[]){int i;for(i=0;tt[i];i++){if((tt[i]=′A′)( (1) ))(2) ;}return ( (3) ) ;}main(){char tt[81];printf("\nPlease enter a string:");gets(tt);printf("\nThe result string is: \n%s",fun(tt));}

请补充函数fun(),该函数的功能是:分类统计一个字符串中元音字母和其他字符的个数(不区分大小写)。例如,输入aeiouAOUpqn,结果为A∶2 E∶1 1∶1 O∶2 U∶2 Other∶4。注意:部分源程序给出如下。请勿改动主函数main和其他函数中的任何内容,仅在函数fun()的横线上填入所编写的若干表达式或语句。试题程序:include<stdiO.h>include<conio.h>define N 100void fun(char *str,int bb[ ]){char *p=str;int i=0;for(i=0;i<6;i++)【 】;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:【 】;}【 】}}main(){char str[N),ss[6]="AEIOU";int i;int bb[6];clrscr();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]);}

请编写一个函数fun(),该函数的功能是:返回给定字符串中大写字母字符的个数。如字符串"Hello World"中,大写字母的个数为2个。注意:部分源程序已存在文件PROC5.CPP中。请勿修改主函数和其他函数中的任何内容,仅在函数fun()的花括号中填写若干语句。文件PROC5.cpp的内容如下://PROC5.cppinclude<iostream>include<string>using namespace std;int fun(char *str);int main(){char str[ ]="Chinese Computer World";cout<<fun(str)<<end;return 0;}int fun(char *str){//**********}

给定程序MODll.C中函数fun的功能是:将s所指字符串中的字母转换为按字母序列的后续字母(但z转换为A,z转换为a),其他字符不变。请改正函数fun中指定部位的错误,使它能得出正确的结果。注意:不要改动main函数,不得增行或删行,也不得更改程序的结构!

请编写函数fun,其功能是分别统计形参t所指二维数组中字母A和c的个数。注意:部分源程序存在PROGl.C中,请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入所缩写的若干语句。试题程序:

给定程序MODll.C中函数fun的功能是:统计字符串中各元音字母(即:A、E、I、O、U)的个数。注意:字母不分大、小写。例如:若输入:THIs is aboot,则输出应该是:1、0、2、2、0。请改正程序中的错误,使它能得出正确的结果。注意:不要改动main函数,不得增行或删行,也不得更改程序的结构!

下列给定程序中,函数fun()的功能是:将str所指字符串中的字母转换为按字母序列的后续字母(Z转换A,z转换a),其他字符不变。请修改函数fun()中的错误,得出正确的结果。注意:不要改动main()函数,不得增行或删行,也不得更改程序的结构。试题程序:

法语字母中,有5个元音字母:a, e, i, o, u.

16、法语字母中,有5个元音字母:a, e, i, o, u.