改錯(cuò)題
下列給定程序中,函數(shù)FUN的功能是:將一個(gè)由八進(jìn)制數(shù)字字符組成的字符串轉(zhuǎn)換為與其面值相等的十進(jìn)制整數(shù)。規(guī)定輸入的字符串最多只能包含5位8進(jìn)制數(shù)字。例如,若輸入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++;
/********found********/
while (*p != 0)
{
n=n*7+*p-'o';
p++;
}
return n;
}
main()
{
char s[6];
int i;
int n;
printf("Enter a string (octal 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 octal digits!\n\n", s[i]);
exit(0);
}
printf("The original string: ");
puts(s);
n = fun(s);
printf("\n%s is convered to intege number: %d\n\n", s, n);
}
第1處:n=*p-‘o’;應(yīng)改為n=*p-‘0’;
第2處:n=n*7+*p-‘o’;應(yīng)改為n=n*8+*p-‘0’;
編輯推薦:
2014年上半年計(jì)算機(jī)等級(jí)考試報(bào)名時(shí)間預(yù)告
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |