本帖最后由 jw在路途 于 2014-8-12 11:40 编辑
package cn.itcast_02; import java.util.Scanner; /* 这是今天的练习: * Scanner的小问题(大家来找茬): * 请指出哪一种有问题???说明原因,我不是很理解。谢谢帮助! * */ public class ScannerDemo { public static void main(String[] args) { Scanner sc = new Scanner(System.in); //第1种 // int -- int // int x = sc.nextInt(); // int y = sc.nextInt(); //第2种 // String --String // String x = sc.nextLine(); // String y = sc.nextLine(); //第3种 // String -- int // String x = sc.nextLine(); // int y = sc.nextInt(); //第4种 // int--String //int x = sc.nextInt(); //String y = sc.nextLine(); System.out.println(x); System.out.println(y); } }
|