王道机试4.3:进制转换

#include<stdio.h>
int main(){
	long long a, b;
	int m;
	while (scanf("%d",&m)!=EOF)
	{
		if (m == 0)
			break;
		scanf("%lld%lld", &a, &b);
		a = a + b;
		int ans[50], size = 0;

		do
		{
			ans[size++] = a%m;
			a /= m;
		} while (a!=0);

		for (int i = size-1; i >= 0 ; i--)
		{
			printf("%d", ans[i]);
		}
		printf("\n");
	}
	return 0;
}

在这里插入图片描述

#include<stdio.h>
#include<string.h>
int main(){
	int a, b;
	char str[40];
	while (scanf("%d%s%d",&a,str,&b)!=EOF)
	{
		int tmp = 0, length = strlen(str), c = 1;
		for (int i = length-1; i >= 0; i--)
		{
			int x;
			if (str[i] >= '0'&&str[i] <= '9')
			{
				x = str[i] - '0';
			}
			else if (str[i]>='a'&&str[i]<='z')
			{
				x = str[i] - 'a' + 10;
			}
			else
			{
				x = str[i] - 'A' + 10;
			}
			tmp += x*c;
			c *= a;
		}
		char ans[40], size = 0;
		do
		{
			int x = tmp%b;
			ans[size++] = (x < 10) ? x + '0' : x - 10 + 'A';
			tmp /= b;
		} while (tmp);
		for (int i = size-1; i >= 0; i--)
		{
			printf("%c", ans[i]);
		}
		printf("\n");
	}
	return 0;
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值