> 개발-IT-인터넷/> JAVA

[해커랭크(HackerRank) JAVA 풀이] - Welcome to Java!

jini:) 2021. 7. 28. 16:45
728x90
반응형
해커랭크 - https://www.hackerrank.com/
Prepare > Java > Introduction > Welcome to Java!
 

HackerRank

HackerRank is the market-leading technical assessment and remote interview solution for hiring developers. Learn how to hire technical talent from anywhere!

www.hackerrank.com

 

자바의 세계에 오신 것을 환영합니다!

이 챌린지에서는 stdout으로 출력하는 연습을 합니다.

 

 

에디터에 솔루션 클래스와 기본 메서드가 선언되어있는 상태입니다.

아래 두 줄의 코드를 이용해 메인 메서드를 완성하세요.

System.out.println("Hello, World.");
System.out.println("Hello, Java.");

 

Output Format :

두 줄을 출력합니다.

1. Hello, World. 를 첫번째 줄에 출력하세요.

2. Hello, Java. 를 두번째 줄에 출력하세요.

 

Sample Output :

Hello, World.
Hello, Java.

 

 

Code :

public class Solution {
    public static void main(String[] args) {
        /* Enter your code here. Print output to STDOUT. Your class should be named Solution. */
        System.out.println("Hello, World.");
        System.out.println("Hello, Java.");
    }
}

 

 

 

개인 공부를 위한 포스팅입니다.
모든 번역, 코드는 완벽하지 않을 수 있습니다.

 

 

 

728x90
반응형