文章
2
粉丝
131
获赞
0
访问
10.4k
#include<stdio.h>
#include<bits/stdc++.h>
using namespace std;
int main()
{ int m,n;
char s[105];
cin>>m>>n;
cin>>s;
int ans=0;
for(int i=0;i<strlen(s);i++)
{ans=ans*m;
if(s[i]>='0'&&s[i]<='9')
ans+=(s[i]-'0');
else
ans+=(s[i]-'A'+10);
}
char t[105];
int cnt=0;
while(ans>0)
{
int w=ans%n;
if(w<10) t[cnt++]=w;
else t[cnt++]=w-10+'a';
ans=ans/n;
}
for(int i=cnt-1;i>=0;i--)
cout<<t[i];
return 0;
}
为什么这道题我写的通过率为0呀,想不出来
登录后发布评论
你判断w小于10的时候赋值有问题,t是char类型数组,你的w却是int类型的,你应该再加一个'0'。
将23行
改为