개발놀이터
2-3. 가위바위보 본문
package 배열1차원2차원.가위바위보2다시3.my;
import java.util.Scanner;
public class Main {
/**
* 잘 풀었습니다. 피드백 할 것은 없습니다.
*/
public static void main(String[] args) {
Scanner kb = new Scanner(System.in);
int num = kb.nextInt();
int[] A = new int[num], B = new int[num];
for (int i = 0; i < num; i++) {
A[i] = kb.nextInt();
}
for (int i = 0; i < num; i++) {
B[i] = kb.nextInt();
}
for (int i = 0; i < num; i++) {
System.out.println(solution(A[i], B[i]));
}
}
private static String solution(int A, int B) {
String answer = "";
if (A == B) {
answer = "D";
}
else if (A == 1 && B == 3) {
answer = "A";
}
else if (A == 3 && B == 1) {
answer = "B";
}
else if (A < B) {
answer = "B";
}
else if (A > B) {
answer = "A";
}
return answer;
}
}
완벽하게 풀었다.
'기타 > 코딩테스트' 카테고리의 다른 글
2-5. 소수의 개수 (0) | 2023.02.14 |
---|---|
2-4. 피보나치 수열 (0) | 2023.02.14 |
2-2. 보이는 학생 (0) | 2023.02.14 |
1장 문자열 주요 개념 복습 노트 (0) | 2023.02.09 |
1-12. 2진 암호 (0) | 2023.02.09 |