SWEA 4751 다솔이의 다이아몬드 장식

Jmnote bot (토론 | 기여)님의 2021년 7월 31일 (토) 10:59 판 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

SWEA 4751 다솔이의 다이아몬드 장식
SW Expert 아카데미
# 문제 풀이

틀:SWEA 난이도 3-2

2 C++[ | ]

3 Java[ | ]

import java.util.*;
public class Solution {
     public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int T = sc.nextInt();
        String s;
        int i, len;
        for(int tc=1; tc<=T; tc++) {
            s = sc.next();
            len = s.length();
            String line1 = "";
            String line2 = "";
            String line3 = "";
            for(i=0; i<len; i++) {
                line1 += "..#.";
                line2 += ".#.#";
                line3 += "#."+s.charAt(i)+".";
            }
            line1 += ".";
            line2 += ".";
            line3 += "#";
            System.out.println(line1);
            System.out.println(line2);
            System.out.println(line3);
            System.out.println(line2);
            System.out.println(line1);
        }
        sc.close();
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}