일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Spring
- FOR문
- 1차원배열
- 변수
- 스캐너클래스
- 반복문
- 유비쿼터스
- 백준알고리즘
- C언어
- 함수
- IFELSE
- IF
- for
- 기본
- 하드웨어
- java프로그래밍
- 스캐너
- 알고리즘
- MySQL
- IF문
- java
- 자료구조
- 데이터
- 배열
- 백준
- 자바
- error
- 파이썬프로그래밍기초
- Scanner
- Scanner class
- Today
- Total
목록이스케이프 (2)
정리하고기록하자
백준 알고리즘 개 문제 public class Main { public static void main(String[] args){ System.out.println("|\\_/|"); System.out.println("|q p| /}"); System.out.println("( 0 )\"\"\"\\"); System.out.println("|\"^\"` |"); System.out.println("||_/=\\\\__|"); } } escape (이스케이프 문자) : 문자열 내에서 특수한 기능을 수행하는 문자. \' : 홑따옴표 출력 \" : 쌍따옴표 출력 \n : 줄바꿈 \t : 탭문자 ( 일정한 간격 ) \\ : 역슬래시 출력
백준 알고리즘 고양이 문제 public class Main { public static void main(String[] args){ System.out.print("\ /\"); System.out.print(" ) ( ')"); System.out.print("( / )"); System.out.println(" \(__)|"); } } 처음 제출한 코드.. 에러코드 : illegal escape character escape (이스케이프 문자) : 문자열 내에서 특수한 기능을 수행하는 문자. \' : 홑따옴표 출력 \" : 쌍따옴표 출력 \n : 줄바꿈 \t : 탭문자 ( 일정한 간격 ) \\ : 역슬래시 출력 수정 후 코드 public class Main{ public static void mai..