http://ac.jobdu.com/problem.php?pid=1026

 


题目描述:

输入两个不超过整型定义的非负10进制整数A和B(<=231-1),输出A+B的m (1 < m <10)进制数。

输入:
输入格式:测试输入包含若干测试用例。每个测试用例占一行,给出m和A,B的值。
当m为0时输入结束。
输出:
输出格式:每个测试用例的输出占一行,输出A+B的m进制数。
样例输入:
8 1300 48
2 1 7
0
样例输出:
2504
1000

[cpp]  view plain copy
  1. #include<iostream>  
  2. #include<cstdio>  
  3. #include<cmath>  
  4. #include<algorithm>  
  5. #include<cstdlib>  
  6. #include<memory.h>  
  7. #include<cstring>  
  8.   
  9. using namespace std;  
  10. long a, b;  
  11. int m;  
  12. void change(long v){  
  13.     if(v/m){  
  14.         change(v/m);  
  15.     }  
  16.     printf("%d", v%m);  
  17. }  
  18. int main(){  
  19.   
  20.     //freopen("in.txt", "r", stdin);  
  21.      
  22.     while(cin>>m>>a>>b, m){  
  23.         change(a+b);  
  24.         printf("\n");  
  25.     }  
  26.     //fclose(stdin);  
  27. }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值