八進制字符串轉成十進制整數

題以下:code 將無符號八進制數字構成的字符串轉換爲十進制整數。例如,輸入的字符串爲:556,則輸出十進制整數366。字符串 代碼以下:io #include <stdio.h> #define N 10 void main() { unsigned char str[N]; // 存放八進制字符串 unsigned char len=0; // 存放字符長度 int i; int
相關文章
相關標籤/搜索