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
|
593 Discussions
|
Please Login in order to post a comment
import java.util.Scanner;
public class Main {
}
Java Code
import java.util.*;
public class Solution {
}
public class Solution {
}
For Java15 Platform
I wrote the code from scratch just to get more practice
public static void main(String[] args) { Scanner sc= new Scanner(System.in); int a=sc.nextInt(); int b=sc.nextInt(); int c=sc.nextInt(); System.out.println(a); System.out.println(b); System.out.println(c); sc.close(); }