티스토리 뷰

DESCRIPTION

next-line brace style을 end-of-line brace style로 변환 하는 프로그램을 작성하시오.

예를 들어다음 (a)의 Java code는 next-line brace style이고, (b)는 end-of-line brace style입니다.

여러분의 프로그램은 Java source code file로부터 Command line을 argument로 전달 받습니다.

그 Command line을 end-of-line brace style로 변환 해야 합니다.

Write a program that converts the Java source code from the next-line brace style to the end-of-line brace style.

For example, the following Java source in (a) uses the next-line brace style. Your program converts it to the end-of-line brace style in (b).

Your program can be invoked from the command line with the Java sourcecode file as the argument.

It converts the Java source code to a new format.

For example, the following command converts the Java source-code file Test.java to the end-of-line brace style.

 

INPUT

next-line brace style인 자바 소스코드

OUTPUT

end-of-line brace style인 자바 소스코드

SAMPLE INPUT
public class Test
{
	public static void main(String[] args)
	{
		System.out.println("###");
	}
}
SAMPLE OUTPUT
public class Test {
	public static void main(String[] args) {
		System.out.println("###");
	}
}
SOURCE

JAVA2015 PE12.12


'학교공부 > JAVA' 카테고리의 다른 글

[JAVA] Colorable 인터페이스  (0) 2017.07.26
[JAVA] 비교가능한 GeometricObject  (0) 2017.07.26
[JAVA] 16진법 예외처리  (0) 2017.07.26
[JAVA] 숫자 포맷 예외처리  (0) 2017.07.26
[JAVA] 3의 배수2 (난이도:고급)  (0) 2017.07.26
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
more
«   2025/01   »
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
글 보관함