반응형

@notepad_jj2

츄르사려고 코딩하는 코집사입니다.


1. [SW expert Academy] SWEA 1928번 Base64 Decoder 자바(Java)

 

2. 코드

import java.util.Arrays;
import java.util.Base64;
import java.util.Scanner;

public class Solution {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int T = sc.nextInt();
		sc.nextLine();
		
		for(int tc = 1; tc<=T; tc++) {
			String encode = sc.nextLine();
			String decode = new String(Base64.getDecoder().decode(encode));
            System.out.printf("#%d %s\n", tc, decode);
		}
	}
}

 

반응형
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기