+ 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 ответ
+ 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