实现进制转化伪代码的C语言转化

#include <stdio.h>
int main()
{
    int x,p;
    printf("Enter the new base");
    scanf("%d",&p);
    printf("Enter the number to be converted");
    scanf("%d",&x);
    int a[100];
    int count=0;
    do
    {
        a[count++]=x%p;
        x=x/p;
    }
    while(x!=0);
   
    for(int i=count-1;i>=0;i--)
    {
        printf("%d",a[i]);
    }
    return 0;
}

 

posted @ 2022-10-07 20:54  20221427曹甲松  阅读(29)  评论(0编辑  收藏  举报