728x90 비트 장기/java복습문제정리1 자바 첫빠따 3 랜덤 100중에 하나가져오기 int rn = (new Random()).nextInt(100);System.out.println(rn); 4 숫자 입력받고 출력하기 System.out.println("숫자입력 ");int input=(new Scanner(System.in)).nextInt();System.out.println(input); 6 객체 생성,선언,초기값설정 String s1;//객체 선언String s2;s2 = "호랑이2";//객체 생성String s3 = "호랑이3";//객체 선언과 동시에 생성String s4 = new String();//객체 선언과 생성 but 초기값이 없다.String s5 = new String("호랑이4");//객체선언,생성,초기값String s6 = "".. 2018. 8. 15. 이전 1 다음