[JAVA] 윷놀이 만들기(Yut Play) [Math.random()과 조건문 switch 활용]
·
◎ Java/Java☕
[JAVA] 조건문 switch[하나의 조건식으로 많은 경우의 수 처리하기] 1. 조건문 switch switch문은 단 하나의 조건식으로 많은 경우의 수를 처리할 수 있다. switch문은 아래와 같다. 1. 조건식을 계산한다. 2. 조건식의 결과와 일치하는 case문으로 이동한다. 3. 이후의 문 yermi.tistory.com - 윷놀이 만들기(Yut Play) public class YutPlay { public static void main(String[] args) { for (int i = 0 ; i < 20 ; i++) { int play = (int)(Math.random() * 16 + 1); switch (play) { case 1: System.out.println("\'빽도\'입니..