+ 2

How can I assign 2 integer values(which user entered) to 2 different variables?

How can I assign 2 integers, which user inputs, to 2 different variables? for example: user has entered: 2 and 3. how can I type int x = "number that user entered first" and int y "number that user entered second" I dont know how clear is my question, but I hope that you will get what I mean. :)

16th Dec 2017, 12:48 PM
Sad
Sad - avatar
2 Réponses
+ 30
import java.util.Scanner; public class Program{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); int x=sc.nextInt(),y=sc.nextInt(); System.out.print(x+" is the first number entered\n"+y+" is second number entered"); } } //hope it helps☺
16th Dec 2017, 12:56 PM
Gaurav Agrawal
Gaurav Agrawal - avatar
+ 2
Thanks a lot, it worked! 😊
16th Dec 2017, 1:03 PM
Sad
Sad - avatar