[Java] 주사위 던지기 (Math.random(), switch)개발자가 되기까지 (2023.08.16~2024.04.15)/[Basic] Java2023. 8. 30. 17:11
Table of Contents
<문제>
1~6까지의 수를 랜덤으로 추출하여 '주사위 : 1칸 전진' 출력 |
<방법>
public class SwitchRandom {
public static void main(String[] args) {
// 1~6까지의 랜덤 생성
int dice = (int)(Math.random()*6)+1;
//랜덤 수에 따른 출력
switch(dice) {
case 1: System.out.println("주사위 : "+dice+"칸 전진"); break;
case 2: System.out.println("주사위 : "+dice+"칸 전진"); break;
case 3: System.out.println("주사위 : "+dice+"칸 전진"); break;
case 4: System.out.println("주사위 : "+dice+"칸 전진"); break;
case 5: System.out.println("주사위 : "+dice+"칸 전진"); break;
case 6: System.out.println("주사위 : "+dice+"칸 전진"); break;
default:
System.out.println("주사위를 다시 던져주세요.");
}
}
}
[Java] 주사위 던지기 (Math.random(), switch) 끝!
(다음 게시물 예고편)
[Java] 두 정수의 사칙연산 (Scanner, switch, if, String, char)
728x90
@rlozlr :: 얼렁뚱땅 개발자
얼렁뚱땅 주니어 개발자
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!