day04_FlowEx7

육희영·2021년 9월 2일
0
package day04;

import java.util.Scanner;

public class FlowEx7 {
	public static void main(String[] args) {
		System.out.print("가위(1), 바위(2), 보(3) 중 하나를 입력하세요.>");
		
		Scanner scanner = new Scanner(System.in);
		int user = scanner.nextInt();
		int com = (int)(Math.random() * 3) + 1;
		scanner.close();
		
		System.out.println("당신은" + user + "입니다");
		System.out.println("컴퓨터는" + com + "입니다");
		
		switch (user - com) {
			case 2: case -1:	// 3-1, 1-2, 2-3	유저/컴
				System.out.println("당신이 졌습니다.");
				break;
			case 1: case -2:	// 2-1, 3-2, 1-3
				System.out.println("당신이 이겼습니다.");
				break;
			case 0 : 
				System.out.println("비겼습니다.");
		}
	}
}

출력결과


1,2,3중 랜덤으로 결과값이 나와 컴퓨터랑 가위,바위,보를 할수있다.

0개의 댓글

관련 채용 정보