HDU1877 又一版 A+B

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



 

 

Input
输入格式:测试输入包含若干测试用例。每个测试用例占一行,给出m和A,B的值。
当m为0时输入结束。
 

 

Output
输出格式:每个测试用例的输出占一行,输出A+B的m进制数。
 

 

Sample Input
8 1300 48
2 1 7 0
 

 

Sample Output
2504
1000
 
 1 import java.util.Scanner;
 2 
 3 public class HDU1877 {
 4 
 5     public static void main(String[] args) {
 6         // TODO Auto-generated method stub
 7             Scanner input = new Scanner(System.in);
 8             for(;;){
 9                 int jinzhi = input.nextInt();
10                 if(jinzhi==0){
11                     break;
12                 }else{
13                     int a = input.nextInt();
14                     int b = input.nextInt();
15                     int c = a+b;
16                     
17                     int i = 0;
18                     int k = 0;
19                     int s = 0;
20                     while(c!=0){
21                         k = c%jinzhi;
22                         s+=k*(int)Math.pow(10, i);
23                         i++;
24                         c=c/jinzhi;
25                         
26                     }
27                     System.out.println(s);
28                 }
29             }
30         
31 
32         
33 
34             
35     }
36 
37 }
View Code

 

转载于:https://www.cnblogs.com/ke-T3022/p/8443897.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值