[코드업/자바] 기초 100제 1.출력문 :: 1001~1106
my code archive
article thumbnail
반응형

🤍코드업(CodeUp) 기초100제 1.출력문 1001~1106 자바(JAVA)로 풀기🤍

문제1001.
Hello
public class Main {
	
	public static void main(String[] args) {
		
		System.out.println("Hello");
	}
}

 

문제1002.
Hello World
public class Main {
	
	public static void main(String[] args) {
		
		System.out.println("Hello World");
	}
}

 

문제1003. 줄바꿔 출력하기

Hello
World
public class Main {
	
	public static void main(String[] args) {
		
		System.out.println("Hello\nWorld");
	}
}

 

문제1004. 작은따옴표 포함하여 출력하기

'Hello'
public class Main {
	
	public static void main(String[] args) {
		
		System.out.println("\'Hello\'");
	}
}

 

문제1005. 큰따옴표 포함하여 출력하기

"Hello World"
public class Main {
	
	public static void main(String[] args) {
		
		System.out.println("\"Hello World\"");
	}
}

 

문제1006. 특수문자 출력하기

"!@#$%^&*()"
public class Main {
	
	public static void main(String[] args) {
		
		System.out.println("\"!@#$%^&*()\"");
	}
}

 

문제1007. 파일 경로 출력하기

"C:\Download\hello.cpp"
public class Main {
	
	public static void main(String[] args) {
		
		System.out.println("\"C:\\Download\\hello.cpp\"");
	}
}

 

문제1008. 유니코드로 특수문자 출력하기

public class Main {
	
	public static void main(String[] args) {
		
		System.out.print("\u250C\u252C\u2510\n");
		System.out.print("\u251C\u253C\u2524\n");
		System.out.print("\u2514\u2534\u2518\n");
	}
}

 

(스페셜) 문제 1106.

int형의 가장 작은수 a와 int형의 가장 큰수 b를 차례대로 공백으로 분리하여 출력.
예)a b
public class Main {

	public static void main(String[] args) {
		
		int min, max;
		min = Integer.MIN_VALUE;
		max = Integer.MAX_VALUE;
		
		System.out.print(min+" "+max);
		
	}

}

클래스 이름 main으로 하라는거 못보고 컴파일 에러 계속남..ㅋㅋㅋㅋㅋ

오랜만에 자바 예제 푸니까 머리 잘돌아가고 좋네...

 

반응형
profile

my code archive

@얼레벌레 개발자👩‍💻

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!

반응형