RosettaCodeData/Task/User-input-Text/Java/user-input-text-1.java

12 lines
338 B
Java
Raw Permalink Normal View History

2014-01-17 05:32:22 +00:00
import java.util.Scanner;
2013-04-11 01:07:29 -07:00
public class GetInput {
public static void main(String[] args) throws Exception {
2014-01-17 05:32:22 +00:00
Scanner s = new Scanner(System.in);
System.out.print("Enter a string: ");
String str = s.nextLine();
System.out.print("Enter an integer: ");
int i = Integer.parseInt(s.next());
2013-04-11 01:07:29 -07:00
}
}