gpt4 book ai didi

Java二维数组学习

转载 作者:行者123 更新时间:2023-11-29 09:53:32 25 4
gpt4 key购买 nike

我正在尝试完成此练习 Java 代码。明显的问题是,当我尝试打印 array[1][2] 时,它返回 null,因此我认为该数组可能为空。如何将用户输入放入数组?

import java.util.Scanner;
public class Studyone {


public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
int row = 13;
int col = 25;
String sentence;
String sentence2;
String [][] map = new String[row][col];
for (int i = 0; i < map.length; i++)
{
for (int j = 0;i < map.length; i++)
{
System.out.println("Enter the element");
sentence2 = input.nextLine();
map[i][j]=sentence2;
if (row>col)
{
break;
}
}
}
System.out.println(map[1][2]);
}
}

最佳答案

改变

for (int j = 0;i < map.length; i++) 

for (int j = 0;j < map[0].length; j++) 

例如,假设x = new int[3][4], x[0], x[1 ]x[2] 是一维的数组,每个包含四个元素,如图x.length3,并且x[0].lengthx[1].lengthx[2].length4

enter image description here

关于Java二维数组学习,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25988246/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com