HDU P2106 JAVA

Problem Description
As we know , we always use the decimal system in our common life, even using the computer. If we want to calculate the value that 3 plus 9, we just import 3 and 9.after calculation of computer, we will get the result of 12.
But after learning <>,we know that the computer will do the calculation as the following steps:
1 computer change the 3 into binary formality like 11;
2 computer change the 9 into binary formality like 1001;
3 computer plus the two number and get the result 1100;
4 computer change the result into decimal formality like 12;
5 computer export the result;

In the computer system there are other formalities to deal with the number such as hexadecimal. Now I will give several number with a kind of change method, for example, if I give you 1011(2), it means 1011 is a number in the binary system, and 123(10) means 123 if a number in the decimal system. Now I will give you some numbers with any kind of system, you guys should tell me the sum of the number in the decimal system.

Input
There will be several cases. The first line of each case contains one integers N, and N means there will be N numbers to import, then there will be N numbers at the next N lines, each line contains a number with such form : X1….Xn.(Y), and 0<=Xi

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while(sc.hasNext()){
            int t = sc.nextInt();
            int sum=0;
            for(int i=0;i<t;i++){
                String str = sc.next();
                sum+=toTen(str);
            }
            System.out.println(sum);
        }

    }

    private static int toTen(String str) {
        char a [] = str.toCharArray();
        String str1 = "";
        int m=0;
        // str1 表示  数,str2 表示 几进制
        int x =0;
        for(int i=0;i<a.length;i++){
                if(a[i]=='('){
                    x=i;
                    break;
                }
                str1=str1+a[i];
        }
        if(a[x+2]!=')'){
            m=10;
        }else{
            m=(int)a[x+1]-48;
        }
        double sum = zhuanhua(str1,m,10);
        return (int)sum;
    }
    private static double zhuanhua(String str1, int x, int y) {
        double sum=0;
        char a [] = str1.toCharArray();
        for(int i=0;i<a.length;i++){
            sum=sum+Mi((int)a[i]-48,x,a.length-1-i);
        }
        return sum;
    }
    private static double Mi(int x, int y, int k) {
        for(int i=0;i<k;i++){
            x=x*y;
        }
        return x;
    }

}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值