查看匯總:2014年上半年計算機二級C語言上機模擬試題匯總
填空題
請補充fun函數(shù),該函數(shù)的功能是字符串tt中的大寫字母都改為對應(yīng)的小寫字母,其它字符不變.
例如,若輸入"Are you come from Sichuan?則輸出","are you come from sichuan?"
注意:部分源程序給出如下。
僅在橫線上填入所編寫的若干表達式或語句,勿改動函數(shù)中的其他任何內(nèi)容。
試題程序:#include
#include
#include
char *fun(char tt[])
{
int i;
for(i=0;tt[i];i++)
{
if((tt[i]>='A')&&(___1___))
tt[i] += ___2___;
}
return (___3___);
}
main()
{
char tt[81];
printf("\nPlease enter a string: ");
gets(tt);
printf("\nThe result string is: \n%s", fun(tt));
}
第1處填空:tt[i]<=’z’或’z’>=tt[i]
第2處填空:32或’a’-‘A’
第3處填空:tt
編輯推薦:
2014年上半年計算機等級考試報名時間預(yù)告
2014年計算機等級考試考試時間預(yù)測
2013年9月計算機等級考試成績查詢時間及方式預(yù)告