정수 2개와 연산자 하나를 입력 받아 두 정수의 연산을 출력 연산자: + - * / % 입력 예) 3 2 + 출력 예) 3+2=5 만약 다른 연산자가 들어오면 '잘못된 연산자입니다.' 출력 // Scanner 클래스를 사용하기 위한 import import java.util.Scanner; public class 계산기 { public static void main(String[] args) { // scan 시작 Scanner sc = new Scanner(System.in); System.out.print("첫번째 정수> "); int num1 = sc.nextInt(); System.out.print("두번째 정수> "); int num2 = sc.nextInt(); System.out.print(..
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("주사위 : "+dic..