728x90 자바 경품 추천1 [JAVA] ch04-09. 경품 추천 public class Ex09 { // 경품 추천 public static void main(String[] args){ int score = (int)(Math.random()*10)+1; String msg = ""; score *= 100; msg = "score: " + score + ", prize: "; switch(score){ case 1000: msg += "fridge, "; case 900: msg += "tv, "; case 800: msg += "notebook, "; case 700: msg += "bicycle, "; default: msg += "ballpen"; } System.out.print(msg+"\n"); } } JAVA/예제 2017. 8. 21. 이전 1 다음 728x90