코딩도장 - 가~위 바위~ 보! package may31; import java.util.Arrays; import java.util.Scanner; public class Test01 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("몇판 하시겠습니까?");//게임 횟수 int input = sc.nextInt(); int[] result = new int[3];// 승무패 횟수 카운트 char[] result2 = new char[input];//승 무 패 결과값 저장 for(int i = 0; i < input; i++) { int input2; do { System.ou..