+ 1
Hey There Guys Can Any one tell me How to get User Input , This application showing all Output without scanning user input
Hey There Guys Can Any one tell me How to get User Input , This application showing all Output without scanning user input
2 ответов
+ 2
Thank you very much guys for your Support All the best Guys for your next Challenges : )
+ 1
https://code.sololearn.com/cA25A16A5A0A
import java.util.*;
public class Program
{
public static void main(String[] args) {
System.out.print("Enter your input: ");
Scanner scanner = new Scanner(System.in);
String text = scanner.nextLine();
System.out.print(text);
System.out.println("\nYou entered: " + text);
}
}
::::INPUT::::
Taco Tuesday!
:::OUTPUT:::
Enter your input: Taco Tuesday!
You entered: Taco Tuesday!
------------------
import java.util.*;
^Put this at the top so you can use the Scanner class. It's how you'll receive input from user.
Scanner scanner = new Scanner(System.in);
String text = scanner.nextLine();
^This is where we'll create our scanner object and receive input from the user. We'll store the received input into a String variable called text.
The rest of the code is simply displaying the information for the user.