코드업 기초1. 출력문
업데이트:
[1001 ~ 1008]
이 문제는 아래 링크로 이동하면 나온다.
https://techhan.github.io/algorism/codeup-1/
[1101] Hello, World!
[출력] Hello,World!
public class Main{
public static void main(String[] args) {
System.out.print("Hello, World!");
}
}
[1102] Hello, World! (줄 바꿈 버전)
[출력]
Hello,
World!
public class Main{
public static void main(String[] args) {
System.out.print("Hello,\nWorld!");
}
}
[1103] 폴더명 출력
[출력] “c:\test”
public class Main{
public static void main(String[] args) {
System.out.print("\"c:\\test\"");
}
}
[1106] int의 범위
[출력] 예) a b
public class Main {
public static void main(String[] args) {
int a = -2147483648;
int b = 2147483647;
System.out.print(a + " " + b);
}
}
댓글남기기