Tiny Star

🔓Codingtest/0️⃣Lv.0

[프로그래머스] 문자열 출력하기 - Java

청크 2023. 5. 22. 22:51

2023년 05월 22일 월요일

 

[문제 설명]

문자열 str이 주어질 때, str을 출력하는 코드를 작성해 보세요.

 

[내 풀이]

import java.util.Scanner;

public class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String a = sc.next();
        
        System.out.println(a);
    }
}