일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- select
- From
- variable
- 에러
- VisualStudioCode
- JS
- function
- HTML
- 오라클오류
- 자료형
- Eclipse
- Operator
- datatype
- 연산자
- 개발자
- 코딩
- 오라클
- Servlet
- 자바
- sqldeveloper
- CSS
- 변수
- error
- 이클립스
- oracle
- 오류
- 서블릿
- Java
- 삐옥
- SQL
- Today
- Total
목록print (2)
뇨내
Input 콘솔 출력 1. print() 2. println() 3. printf() 콘솔 입력 System.in.read() - 사용자가 입력한 문자를 읽어오는 기능 - 읽어온 문자를 숫자(문자 코드값)로 돌려준다. - 영어와 숫자, 특수문자(ASCII)만 입력가능. 1바이트 입력만 가능 - 한글 불가능(2바이트) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 System.out.print("입력: "); int data = System.in.read(); //버퍼안의 1문자를 가져와라 System.out.println(data); //65 data = System.in.read(); //버퍼 System.out.println(data); //13 data ..
Output 콘솔 입출력, Console Input Output, Console IO - 기본 입력 장치: 키보드 - 기본 출력 장치: 모니터 콘솔 출력 - 서식 구성을 위해서 다양하게 제공 1. System.out.print() 메소드 - 출력 2. System.out.println() 메소드 - 출력 + 엔터 - print line(줄단위 출력) 3. System.out.printf() 메소드★★★★★ - print format - 형식을 제공해준다. 출력을 용이하게 도와주는 형식 문자열을 제공한다. printf() printf()의 형식 문자 1. %s -> String, 문자열을 자리맡아주는 역할 2. %d -> Decimal, 정수(byte, short, int, long) 3. %f -> Fl..