백준 #11365번 !밀비 급일

jhj·2024년 2월 9일

백준 JAVA

목록 보기
204/583
import java.util.Scanner;
public class Main {
	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		
		String a = sc.nextLine();
		while(a.equals("END") == false) {
			String b = "";
			for(int i = a.length() - 1; i >= 0; i--) {
				b += a.charAt(i);
			}
			System.out.println(b);
			a = sc.nextLine();
		}
		sc.close();
	}
}
profile
개발자를 꿈꾸는

0개의 댓글