본문 바로가기
JAVA

[백준] 17202번 핸드폰 번호 궁합

by 동백05 2023. 6. 20.

https://www.acmicpc.net/problem/17202

 

17202번: 핸드폰 번호 궁합

어린시절 다들 한 번씩은 이름으로 궁합을 본 적이 있을 것이다. 이것과 비슷한 방식으로 중앙대학교에는 핸드폰 번호 궁합을 보는 것이 유행이라고 한다. 핸드폰 번호 궁합을 보기 위해서는

www.acmicpc.net

 

import java.util.Scanner;

public class Jun20 {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int A_number=sc.nextInt();
        int B_number=sc.nextInt();
        int[] num_arr=new int[16];
        for(int i=15;i>=0;i-=2){
            num_arr[i]=B_number%10;
            num_arr[i-1]=A_number%10;
            B_number/=10;
            A_number/=10;
        }

        for(int stage=0;stage<14;stage++){
            for(int j=0;j<15-stage;j++){
                num_arr[j]=(num_arr[j]+num_arr[j+1])%10;
            }
        }
        System.out.print(num_arr[0]);
        System.out.print(num_arr[1]);
    }
}

 

댓글