일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 국회의원 & 높으신 분들 어록
- https://minkwon4.tistory.com/161
- https://tecoble.techcourse.co.kr/post/2021-08-07-logback-tutorial/
- Today
- Total
목록java/만들어보기 (2)
OPEN between Secret
import java.util.*; public class cardGame { public static void main (String [] args) { Random rd = new Random(); Scanner sc = new Scanner(System.in); boolean swi = true; while(swi) { int su = rd.nextInt(100); System.out.println("수를 결정하였습니다. 맞추어 보세요"); int i, min=0 , max=99, count=1; while (true) { System.out.println(min + "-" + max); System.out.print(count + ">>"); count++; i = sc.nextInt(); if ..
import java.util.*; public class Hello2 { public static void main (String [] args) { Scanner sc = new Scanner(System.in); System.out.println("가위 바위 보 게임입니다. 가위, 바위, 보 중에서 입력하세요"); System.out.print("철수 >>"); String chul = sc.next(); System.out.print("영희 >> "); String yung = sc.next(); if(chul.equals("가위") && yung.equals("보") || chul.equals("바위") && yung.equals("가위") || chul.equals("보") && yung.eq..