Saturday, February 6, 2016

Java Stdin and Stdout 1 - Hacker Rank Solution

In most of the HackerRank challenges, you need to read input from stdin (standard input) and write your output in stdout (standard output).
One way to take input from stdin is to use the Scanner class and read in from System.in.
You can write your output to stdout by simply using the System.out.println(String) function.

In this problem, you need to read 3 integers from stdin and print them in stdout.
Sample input:
42
100
125
Sample output:
42
100
125
To make the problem easier for you, part of the code is already provided in the editor.
------------------------------------------------------------------------------------------------------------

 Java Stdin and Stdout 1  - Java Stdin and Stdout 1

import java.util.*;

public class Solution {

    public static void main(String[] args) {
      Scanner sc=new Scanner(System.in);
      int a=sc.nextInt();
      int b=sc.nextInt();
      int c=sc.nextInt();
      //Complete this line
      //Complete this line
        
      System.out.println(a);
       System.out.println(b);
        System.out.println(c);
      //Complete this line
      //Complete this line
     
   
    }
}

 Java Stdin and Stdout 1  - Java Stdin and Stdout 1

1 comment:

Powered by Blogger.