728x90 전체 글399 [JAVA] ch04-18. 다이아몬드 00개 획득. 게임보상 public class Ex18 { // 다이아몬드 ㅇㅇ개 취득.(게임보상) public static void main(String[] args){ int diamond = 0; while(diamond JAVA/예제 2017. 8. 22. [JAVA] ch04-17. 카운트다운 public class Ex17 { //카운트 다운 public static void main(String[] args){ for(int i=5;i>=0;i--){ for(long j=0;j JAVA/예제 2017. 8. 22. [JAVA] ch04-16. FOR문 시간 경과 public class Ex16 { public static void main(String[] args){ long startTime = System.currentTimeMillis(); for(int i=0; i JAVA/예제 2017. 8. 22. [JAVA] ch04-15. 삼중 FOR문 public class Ex15 { public static void main(String[] args){ for(int i=1; i JAVA/예제 2017. 8. 22. [JAVA] ch04-13. 이중 FOR 문 public class Ex14 { public static void main(String[] args){ for(int i=2; i JAVA/예제 2017. 8. 22. [JAVA] ch04-13. FOR 문 3 public class Ex13 { public static void main(String[] args){ int sum = 0; for(int i=0; i JAVA/예제 2017. 8. 21. [JAVA] ch04-12. FOR 문 2 public class Ex12 { public static void main(String[] args){ int sum = 0; int i = 0 ; for(; i JAVA/예제 2017. 8. 21. [JAVA] ch04-11. FOR 문 public class Ex11 { public static void main(String[] args){ int sum = 0; for(int i=1; i JAVA/예제 2017. 8. 21. [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. [JAVA] ch04-08. SWITCH ~ CASE 문 3 public class Ex08 { public static void main(String[] args){ int score = 3; switch(score*100){ case 100: System.out.println("score: 100"); case 200: System.out.println("score: 200"); case 300: System.out.println("score: 300"); case 400: System.out.println("score: 400"); default: System.out.println("none"); } } } JAVA/예제 2017. 8. 21. [JAVA] ch04-07. SWITCH ~ CASE 문 2 public class Ex07 { public static void main(String[] args){ char ch = (char)(Math.random()*4+'A'); int score = 0; switch(ch){ case 'A': score = 90; break; case 'B': score = 80; break; case 'C': score = 70; break; case 'D': score = 60; break; } System.out.printf("score : %d", score); } } JAVA/예제 2017. 8. 21. [JAVA] ch04-06. SWITCH ~ CASE 문 public class Ex06 { public static void main(String[] args){ int score = (int)(Math.random() * 10)+1; // 시작값이 1 시작값으로부터 10개 중 랜덤으로 1개 int tmp = score * 100; switch(tmp){ case 100: System.out.printf("score %d : bicycle", tmp); break; case 200: System.out.printf("score %d : TV", tmp); break; case 300: System.out.printf("score %d : Aircon", tmp); break; default: System.out.println("no price"); } } } JAVA/예제 2017. 8. 21. 이전 1 ··· 23 24 25 26 27 28 29 ··· 34 다음 728x90