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 | 29 | 30 | 31 |
Tags
- 개발자스터디
- 99일지
- MySQL
- 항해
- Spring
- 스파르타내일배움캠프WIL
- 스파르타내일배움캠프TIL
- wil
- 프로그래머스
- 중심사회
- Python
- 소프트웨어
- 스파르타내일배움캠프
- 개인공부
- til
- 코딩테스트
- java
- 개발자블로그
- 컴퓨터구조론 5판
- 백준
- 내일배움캠프
- 스파르타코딩클럽
- 국비
- AWS
- Flutter
- 컴퓨터개론
- 운영체제
- 99클럽
- 자바
- 부트캠프
Archives
- Today
- Total
목록자바 문자를 숫자 (1)
컴공생의 발자취
문자열에서 index 위치의 문자 반환 및 형변환 (char to int & String to Array)
💡 오늘의 학습 키워드- charAt(int index)- 형변환 * char to int * String to Array charAt(int index): 문자열에서 해당 index 위치의 문자를 반환해주는 함수이다.String str = "Hello";System.out.println(str.charAt(1));// result : e 형변환1. char to int : 문자를 숫자로 변환하기'0'을 빼주기 ( ASCII code 사용 )char c = '1';int n = c - '0';System.out.println(n); // result : 1 Character.getNumericValue( char c )char c = '1';int n = Character.getNumeric..
💡 코테
2024. 3. 30. 23:49