三、程序改錯題(共24分)
下列給定程序中,函數(shù)proc( )的功能是:從字符串str中,刪除所有大寫字母’F’。
請修改程序中的錯誤,使它能得到正確結(jié)果。
注意:不要改動main( )函數(shù),不得增行或刪行,也不得更改程序的結(jié)構(gòu)。
試題程序:
#include
void proc(char*str)
{
int i,j;
//****found****
for(i=j=0;str[i]一’0’;i++)
if(str[i]!=’F’)
//****found****
str[i]=str[i];
str[j]=’\0’;
}
void main( )
{
char str[80];
printf("\nEnter a string:");
gets(str);
printf("The original string:");
puts(str);
proc(str);
printf("The string after deleted:");
puts(str);
printf("\n\n");}
編輯推薦:
2014年上半年計算機等級考試報名時間及入口專題
各地2014年計算機等級考試費用匯總
2014年計算機等級考試時間