1022 D进制的A+B(20 分)

输入两个非负 10 进制整数 A 和 B (≤2​30​​−1),输出 A+B 的 D (1

输入格式:

输入在一行中依次给出 3 个整数 A、B 和 D。

输出格式:

输出 A+B 的 D 进制数。

输入样例:

123 456 8

输出样例:

1103
#include 
#include 
#include 
using namespace std;

void reverse(int n,int degree){
	stack s;
	while(n){
		s.push(n%degree);
		n/=degree;
	}
	int sum = 0;
	while(!s.empty()){
		cout<>a>>b>>c;
	
	int d = a + b;
	if(d==0)
	cout<<"0"<

 

你可能感兴趣的:(1022 D进制的A+B(20 分))