问答题

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

【参考答案】

(1)tt[i]<=’Z’ (2)tt[i]+=32 (3)tt[解析] 填空1:此处考查判断大写字母的方法,如果字符的......

(↓↓↓ 点击下方‘点击查看答案’看完整答案 ↓↓↓)
热门 试题