1016 部分A+B (15分)【java題解】

琉璃之人追逐幻影發表於2020-11-21

 

題解:

有字串  和 數學運算 這兩種比較快寫的辦法

 

    import java.util.*;
    public class Main {
        public static void main(String[] args) {
            Scanner sc=new Scanner(System.in);
            long s1,s2,c1,c2;
            s1=sc.nextLong();
            c1=sc.nextLong();
            s2=sc.nextLong();
            c2=sc.nextLong();
            long pa=0,pb=0;
            while (s1>0){
                if (s1%10==c1)
                    pa=pa*10+c1;
                s1/=10;
            }
            while (s2>0){
                if (s2%10==c2)
                    pb=pb*10+c2;
                s2/=10;
            }
            System.out.println(pa+pb);
        }
    }


 

相關文章