題目:八進制轉換為十進制
1.程序分析:
2.程序源代碼:
#include<stdio.h> void main() { char *p,s[6];int n; p=s; printf("Please input a Octal number:"); gets(p); n=0; while(*(p)!='\0') { n=n*8 *p-'0'; p ; } printf("Octal number to Decimal number:%d",n); }
,
更多精彩资讯请关注tft每日頭條,我们将持续为您更新最新资讯!