欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java练习题 关于倒叙数字队列相加并输出队列

程序员文章站 2022-07-10 18:41:59
题目 输入两个倒叙的队列,里面存储个位数数字,数目一样多 ,通过相加计算生成一个新的队列输出 如下输入List a包含1 2 3 List b包含4 5 6321+654= 975 返回一个list 5 7 9代码如下public class test { public static void main(String[] args) { List a = Arrays.asList(new Integer[]{5,2,5}); ......

题目 输入两个倒叙的队列,里面存储个位数数字,数目一样多 ,通过相加计算生成一个新的队列输出 如下

输入List a包含1 2 3 List b包含4 5 6  321+654= 975 返回一个list 5 7 9

代码如下

 

public class test {
    public static void main(String[] args) {
        List<Integer> a = Arrays.asList(new Integer[]{5,2,5});
        List<Integer> b = Arrays.asList(new Integer[]{3,2,1});

        List<Integer> c = act(a,b);
        for(Integer i :c){
            System.out.println(i);
        }


    }
    public static List act(List<Integer> a,List<Integer> b){
        List<Integer>c = new ArrayList();
        int tmpA = 0;
        int tmpB = 0;
        int sum = 0;
        for(int i=0;i<a.size();i++){
            tmpA = tmpA +a.get(i)* ((int) Math.pow(10, i));
            System.out.println("tmpA"+tmpA);
        }
        for(int i=0;i<b.size();i++){
            tmpB = tmpB + b.get(i)*((int) Math.pow(10,i));
            System.out.println("tmpB"+tmpB);
        }

        sum = tmpA+tmpB;

        System.out.println("sum"+sum);
        for(int i = 0; i<=lengthNum(sum); i++){
            int tmpN = (sum% (int) Math.pow(10,i+1))/ (int)Math.pow(10,i);
            System.out.println("tmpN"+tmpN);
            sum = sum-(tmpN*(int)Math.pow(10,i));
            c.add(tmpN);
        }
        return c;
    }

    public static int lengthNum(int num){
        int len =0;
        while (num>1){
            len++;
            num/=10;
        }
        return len;
    }
}

 

本文地址:https://blog.csdn.net/m0_37786447/article/details/109262865