记录编号 566053 评测结果 AAAAAAAAAA
题目名称 [NOIP 2000]进制转换 最终得分 100
用户昵称 Gravatarムラサメ 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2021-10-30 19:57:48 内存使用 0.00 MiB
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,m,temp;
int len=0;
char num[10001];
int main(){
	freopen("fjz.in","r",stdin);
	freopen("fjz.out","w",stdout);
	ios::sync_with_stdio(false);
	cin.tie(0);
	cin>>n>>m;
	if(n==0){
		cout<<"0=0(base -20)"<<endl;
		return 0;
	}
	cout<<n<<"=";
	while(n!=0){
		temp=n%m;
		n/=m;
		if(temp<0){
			temp-=m;
			n++;
		}
		if(temp<10){
			num[len++]=(char)(temp+48);
		}
		else{
			num[len++]=(char)(temp-10+'A');
		}
	}
	for(int i=len-1;i>=0;i--){
		cout<<num[i];
	}
	cout<<"(base"<<m<<")"<<endl;
	return 0;
}