1. Hello 출력
public class Main {
public static void main(String[] args) {
System.out.println("Hello");
}
}
2. Hello World 출력
public class Main {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
3. Hello
World 출력
public class Main {
public static void main(String[] args) {
System.out.println("Hello \n World");
}
}
띄어쓰기 표시하는 방법 \n
이스케이프 문자에 대해서 알아두기
4. 'Hello' 출력
public class Main {
public static void main(String[] args) {
System.out.println("'Hello'");
}
}
" " 안에 ' '를 써도 그대로 출력된다.
5. "Hello World" 출력
public class Main {
public static void main(String[] args) {
System.out.println("\"Hello World\"");
}
}
" "를 쓰려면 \를 적절하게 배치해야 한다.
시작부분과 끝나는 부분 모두 " 가 출력될 부분 앞에 \ 를 써야 한다. \"Hello World\"
6. "!@#$%^&*()" 출력
public class Main {
public static void main(String[] atgs) {
System.out.println("\"!@#$%^&*()\"");
}
}
7. "C:\Download\hello.cpp" 출력
public class Main{
public static void main(String[] args) {
System.out.println("\"C:\\Download\\hello.cpp\"");
}
}
먼저 시작부분과 끝나는 부분 모두 " 가 출력될 부분 앞에 \ 를 쓴다.
\"C:\Download\hello.cpp\" 출력할 " " 앞에 \ 2개 먼저 작성
\를 표시한 부분 앞에 한 번 더 써준다.
\"C:\\Download\\hello.cpp\" 출력할 \ 앞에 \ 2개 작성
'문제풀기 > 코드업 문제풀기(Java)' 카테고리의 다른 글
1014. 문자 2개 입력받아 순서 바꿔 출력하기 (0) | 2023.02.14 |
---|---|
1013. 정수 2개 입력받아 그대로 출력하기 (0) | 2023.02.13 |
1010~1012. Scanner 사용 (0) | 2023.02.12 |
문제 1010~1012 (오답) (0) | 2023.02.11 |
1008. 유니코드 특수문자를 출력하기 (0) | 2023.02.10 |