使用用 Java 实现的哈希表,我需要获取 5 个输入值,其中 3 个是字符串,2 个是整数。用户必须能够在一行中写入所有输入值。我尝试了很多不同的方法,主要是使用数组,但我无法在网上找到正确的答案。如果有人可以帮助提供示例代码或想法,我将不胜感激:)Scanner input = new Scanner(System.in); Scanner input1 = new Scanner(System.in); System.out.println("Enter number of people:"); int n = input1.nextInt(); HTable table = new HTable(100); String a[] = new String[5]; for(int i=0; i<n; i++) { a = input.nextLine().split(" "); table.Insert(a[0], a[1], Integer.parseInt(a[2]), a[3], Integer.parseInt(a[4])); }这是我尝试过的最新示例,但它一直在接受输入并且 FOR() 循环似乎没有结束。
1 回答
Cats萌萌
TA贡献1805条经验 获得超9个赞
你可以这样尝试:
public class Name{
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println( "Enter Your Input ");
while (scanner.hasNext())
{
if (scanner.hasNextInt()) {
System.out.println(" Your Value (Int) : " + scanner.nextInt());
} else if (scanner.hasNextFloat()) {
System.out.println(" Your Value (Float) " + scanner.nextFloat());
}
else {
System.out.println( " String Value(String) " + scanner.next());
}
}
添加回答
举报
0/150
提交
取消