第 1 頁(yè):填空題 |
第 2 頁(yè):改錯(cuò)題 |
第 3 頁(yè):程序題 |
例如,若輸入:77777,則輸出將是:32767。
請(qǐng)改正程序中的錯(cuò)誤,使它能得出正確結(jié)果。
注意:不要改動(dòng)main函數(shù),不得增行或刪行,也不得更改程序的結(jié)構(gòu)。
給定源程序:
#include
#include
#include
int fun(char *p)
{int n;
/**********found**********/
n= *p-'o';
p++;
while(*p!=0) {
/**********found**********/
n=n*8+*P-'o';
p++;
}
return n;
}
main()
{char s[6]; int i; int n;
printf("Enter a string (Ocatal digits): "); gets(s);
if(strlen(s)>5){printf("Error: String too longer !\n\n");exit(0);}
for(i=0; s[i]; i++)
if(s[i]<'0'||s[i]>'7')
{printf("Error: %c not is ocatal digits!\n\n", s[i]);exit(0);}
printf("The original string: "); puts(s);
n=fun(s);
printf("\n%s is convered to integer number: %d\n\n",s,n);
}
解題答案:
/**********found**********/
n=*p-'0';
/**********found**********/
n=n*8+*p-'0';
******************************************
相關(guān)推薦:計(jì)算機(jī)等考二級(jí)C語(yǔ)言填空題練習(xí)及精解匯總
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |