解题思路

这题不是任意进制的转换,直接用标注库的函数比较方便。

#include<stdio.h>

#define MAXSIZE 10

int main()
{
    char str[MAXSIZE] = "";
    int outputNum = 0;

    while (scanf("%s", str) != EOF) {
        sscanf(str, "%X", &outputNum);
        printf("%d\n", outputNum);
    }
    return 0;
}