You are viewing a single comment's thread. Return to all comments →
//i did like this
import java.util.Scanner;
public class Solution {
public static void main(String[] args) { Scanner sc = new Scanner(System.in); String value = sc.nextLine(); System.out.println(value); String value1 = sc.nextLine(); System.out.println(value1); String value2 = sc.nextLine(); System.out.println(value2); sc.close(); }
}
Seems like cookies are disabled on this browser, please enable them to open this website
Java Stdin and Stdout I
You are viewing a single comment's thread. Return to all comments →
//i did like this
import java.util.Scanner;
public class Solution {
}