本文主要是介绍HDU--2031进制转换,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
进制转换
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 40007 Accepted Submission(s): 21915
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语言程序设计练习(五)
原题链接: http://acm.hdu.edu.cn/showproblem.php?pid=2031
AC代码:
import java.util.*;
class Main{public static void main(String args[]){Scanner sc=new Scanner(System.in);while(sc.hasNext()){int n=sc.nextInt();int r=sc.nextInt();int i=0,p=0,m=0;char[] str=new char[200];if(n<0){p=-1;n=-n;}while(n>0){m=n%r;if(m>=10){int q=m-10;switch(q){case 0: str[i]='A'; break;case 1: str[i]='B'; break;case 2: str[i]='C'; break;case 3: str[i]='D'; break; case 4: str[i]='E'; break;case 5: str[i]='F'; break;}}else{switch(m){case 0: str[i]='0'; break;case 1: str[i]='1'; break;case 2: str[i]='2'; break;case 3: str[i]='3'; break;case 4: str[i]='4'; break;case 5: str[i]='5'; break;case 6: str[i]='6'; break;case 7: str[i]='7'; break;case 8: str[i]='8'; break;case 9: str[i]='9'; break;}}i++;n=n/r;}if(p==-1){System.out.print("-");}for(int j=i-1;j>=0;j--){System.out.print(str[j]);}System.out.println();}}
}
这篇关于HDU--2031进制转换的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!