Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Operator
- 삐옥
- 오라클
- 서블릿
- oracle
- 개발자
- Servlet
- error
- 오류
- 이클립스
- function
- HTML
- variable
- JS
- CSS
- 변수
- Eclipse
- datatype
- sqldeveloper
- 자바
- Java
- SQL
- 에러
- 코딩
- 연산자
- 자료형
- 오라클오류
- From
- select
- VisualStudioCode
Archives
- Today
- Total
목록INPUT (1)
뇨내
[JAVA - Eclipse] Input
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 ..
JAVA/Escape + Output + Input
2021. 11. 14. 13:13