This is reading input from the user using Scanner in Java.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hey now | |
hey now |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class ReadInput { | |
public static void main(String[] args) { | |
Scanner sc = new Scanner(System.in); | |
System.out.println(sc.nextLine()); | |
} | |
} |
No comments:
Post a Comment