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
|
|
|
}
|
|
|
|
|
}
|