+ 2
How to get more than one input from the user in Javašš
I need to take more input from the user please Tell me a replacement for scanner method(not too hard)
1 Answer
+ 3
importĀ java. util.*;
public class Test{
public static void main(String args[]){
Scanner ss = new Scanner(System. in);
System. out. println("EnterĀ Input.");
int x = ss. nextInt();
System. out. println("Enter Input1.");
int y = ss. nextInt();
And go...... On