当前位置:网站首页>Hexadecimal to octal

Hexadecimal to octal

2022-07-05 04:11:00 CSDNhdlg

#include<stdio.h>
#define N 50
int main()
{
    int i,n;
    int ch[N];
    scanf("%d",&n);
    for(i=0;i<n;i++)
        scanf("%x",&ch[i]);// transport 16 Hexadecimal number
    for(i=0;i<n;i++)
        printf("%o\n",ch[i]);// Output 8 Hexadecimal number
    return 0;
}
 

原网站

版权声明
本文为[CSDNhdlg]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202140659204846.html