Welcome to Java HackerRank Solution

Hello Programmers, In this post, you will know how to solve the Welcome to Java HackerRank Solution. This problem is a part of the HackerRank Java Programming Series.

Ezoicreport this adWelcome to Java HackerRank Solution
Welcome to Java HackerRank Solutions

One more thing to add, don’t directly look for the solutions, first try to solve the problems of Hackerrank by yourself. If you find any difficulty after trying several times, then you can look for solutions.

Welcome to Java HackerRank Solutions

Ezoicreport this adProblem

Welcome to the world of Java! In this challenge, we practice printing to stdout. The code stubs in your editor declare a Solution class and a main method. Complete the main method by copying the two lines of code below and pasting them inside the body of your main method.

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

Input Format

There is no input for this challenge.

Output Format

You must print two lines of output:

  1. Print Hello, World. on the first line.
  2. Print Hello, Java. on the second line.

Sample Output

Hello, World.
Hello, Java.

Welcome to Java HackerRank Solutions

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.");
    }
}

Disclaimer: The above Problem ( Welcome to Java!) is generated by Hackerrank but the Solution is Provided by BrokenProgrammers. This tutorial is only for Educational and Learning purposes.

Next: Java Stdin and Stdout I HackerRank Solution

Sharing Is Caring

Leave a Comment

Ezoicreport this ad