UpDown Dev Story
알고리즘 연습 - 가위 바위 보 본문
아래 강의를 보면서 연습하고 기록하고 있습니다
문제
소스코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int inputInt = sc.nextInt(); // 숫자 입력받음
int[] aUser = new int[inputInt]; // 입력받은 숫자의 크기의 배열 만듬
int[] bUser = new int[inputInt]; // 입력받은 숫자의 크기의 배열 만듬
for (int i = 0; i < inputInt; i++) { // for loop 돌면서 숫자들 배열에 넣는다
aUser[i] = sc.nextInt(); // 숫자를 입력받음
}
for (int i = 0; i < inputInt; i++) { // for loop 돌면서 숫자들 배열에 넣는다
bUser[i] = sc.nextInt(); // 숫자를 입력받음
}
for (int i = 0; i < inputInt; i++) { // for loop
if (aUser[i] == bUser[i]) { // 두 값이 같으면 비김
System.out.println("D");
} else {
if (aUser[i] == 1 && bUser[i] == 3) { // A가 가위 내고 이기는경우
System.out.println("A");
} else if (aUser[i] == 2 && bUser[i] == 1) { // A가 바위 내고 이기는경우
System.out.println("A");
} else if (aUser[i] == 3 && bUser[i] == 2) { // C가 보자기 내고 이기는경우
System.out.println("A");
} else { // 나머지는 B가 이기는경우
System.out.println("B");
}
}
}
}
}
'Algorithm' 카테고리의 다른 글
알고리즘 연습 - 소수(에라토스테네스 체) (0) | 2021.05.26 |
---|---|
알고리즘 연습 - 피보나치 수열 (0) | 2021.05.26 |
알고리즘 연습 - 보이는 학생 (0) | 2021.05.25 |
알고리즘 연습 - 큰 수 출력하기 (0) | 2021.05.25 |
알고리즘 연습 - 암호 (0) | 2021.05.24 |
Comments