+ 1
How can I put more than one Scanner on java?
Might be a stupid question, but I just started with java like yesterday or something, but.. Is it possible to have 4 gui's using scanners on java? for example : First name: (input) Last name: (input) Address: (input) Workplace: (input)
3 Answers
+ 4
Yes, you can, but not on Sololearn. Besides, you don't have to take multiple inputs for this, the Scanner's nextLine method gets an entire line, so you can do something like this:
Scanner sc = new Scanner(System.in);
String fName = sc.nextLine();
String lName = sc.nextLine();
String adress = sc.nextLine();
String workplace = sc.nextLine();
(Although, for the name, I don't think you need seperate lines - to take one word as an input, you can use the next method)
+ 2
an scanner object can get input as many times as you need ... đ
or do I umderstand your question wrong?
import java.util.*;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
String in1 = sc.next();
String in2 = sc.next();
//as many as you need ...
}
}
+ 2
Anton Böhler and Airree
Tysm! This will help me a lot