http://acm.njupt.edu.cn/acmhome/problemdetail.do?&method=showdetail&id=1012ios
描述測試
將一個十進制數N轉換成R進制數輸出,2≤R≤16,R≠10。spa
輸入code
多行。第一行指出如下一共有多少組數據,後續每行包含兩個整數N和R,以空格分隔,-100000≤N≤100000,2≤R≤16,R≠10。blog
輸出內存
多行。每行給出轉換後的R進制數。ci
樣例輸入string
3
7 2
23 12
-4 3io
樣例輸出class
111
1B
-11
提示
題目來源
GUOJ
#include<iostream> #include<string> using namespace std; int main() { int n,N,R; char ch[]={'0','1','2','3','4','5','6', '7','8','9','A','B','C','D','E','F'}; cin>>n; do{ cin>>N>>R; bool flag=true; if(N<0) {flag=false; N=-N;} if(N==0) cout<<'0'; string r=""; while(N) { r+=ch[N%R]; N=N/R; } if(flag==false) r+='-'; for(int i=r.length()-1;i>=0;i--) cout<<r[i]; cout<<endl; n--; }while(n); return 0; }