1027 Colors in Mars (20 分)

1027 Colors in Mars (20 分),第1张

1027 Colors in Mars (20 分)

#include
#include
#include
using namespace std;

void change(int n)
{
int m=0;
vector temp;
do{
temp.push_back(n%13);
n=n/13;
}while(n!=0);
char c=‘A’;
if(temp.size()==1)
{
cout<<‘0’;
if(temp[0]>9)
printf("%c",‘A’+temp[0]-10);
else
cout< }
else
{
for(int i=temp.size()-1;i>=0;i–)
{
if(temp[i]>9)
printf("%c",‘A’+temp[i]-10);
else
cout< }
}
}

int main()
{
int a,b,c;
cin>>a>>b>>c;
cout<<’#’;
change(a);
change(b);
change©;
return 0;
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5712078.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存