hdu 2031 进制转换

    xiaoxiao2021-03-25  90

    进制转换

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 48179    Accepted Submission(s): 26470 Problem Description 输入一个十进制数N,将它转换成R进制数输出。   Input 输入数据包含多个测试实例,每个测试实例包含两个整数N(32位整数)和R(2<=R<=16, R<>10)。   Output 为每个测试实例输出转换后的数,每个输出占一行。如果R大于10,则对应的数字规则参考16进制(比如,10用A表示,等等)。   Sample Input 7 2 23 12 -4 3   Sample Output 111 1B -11   Author lcy   Source C语言程序设计练习(五)

    挺简单的一道题,注意负数的输出方式

    #include<stdio.h> #include<stdlib.h> #include<string.h> int main() { int n,m,temp; char num[40]; while(scanf("%d %d",&n,&m)!=EOF) { int i=0,flag=1; if(n<0) flag=0; n=abs(n); memset(num,0,sizeof(num)); while(n) { temp=n%m; if(temp>=10) num[i++]=temp-10+'A'; else num[i++]=temp+'0'; n/=m; } if(flag==0) printf("-"); for(int j=i-1;j>=0;j--) printf("%c",num[j]); printf("\n"); } return 0; }

    转载请注明原文地址: https://ju.6miu.com/read-32620.html

    最新回复(0)