We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Java
- Introduction
- Java Stdin and Stdout I
- Discussions
Java Stdin and Stdout I
Java Stdin and Stdout I
Sort by
recency
|
570 Discussions
|
Please Login in order to post a comment
test
while(scan.hasNextInt()){ int a = scan.nextInt(); System.out.println(a); }
//What is up, this is my second HackerRank thing, hope y'all like dis.
import java.util.*;
public class Solution {
}
//i did like this
import java.util.Scanner;
public class Solution {
}
import java.io.*;
public class Main { public static void main(String[] args) throws IOException { // Create a BufferedReader to read from stdin BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
}