Language_Coder 503 : 출력 - 자가진단3

boom.jun.cho·2022년 3월 14일
0

Language_Coder_JUNGOL

목록 보기
3/197

문제

다음과 같이 출력되는 프로그램을 작성하라.

출력

My name is Hong Gil Dong.
I am 13 years old.

코드

package com.jungol.algorithm003;

/* 문제 설명 
 * 503 : 출력 - 자가진단3
 * 설 명 : 아래 "출력예"와 같이 출력되는 프로그램을 작성하라. 
 * 입 력 :
 * 출 력 : 
*/
public class Main {
    public static void main(String[] args) {
    	System.out.print("My name is Hong Gil Dong.\n");
    	System.out.print("I am 13 years old.");
    }
}
profile
하루하루 최선을

0개의 댓글