Java :: 가위바위보프로그램
JAVA 수업 [가위바위보 프로그램] 소스코드 12345678910111213141516171819public class java4 { public static void main(String[] args) { Scanner sc= new Scanner(System.in); Random rand = new Random(); String [] txt = {"가위", "바위", "보", "유저 승", "비김", "컴퓨터 승"}; System.out.println("가위 : 1, 바위 : 2, 보 : 3"); int count=0, fin=0; while(fin!=3) { count++; System.out.print("입력 >> "); int me=sc.nextInt()-1, com=rand.nextInt(3..