我正在研究一个问题,我需要将用户输入的坐标(用空格分隔)转换为多维数组。我试图分开' x'并且' y'值并将它们分别存储在单维数组中,例如x [i]和y [i]。
我面临的问题是我无法阅读' y'数组中的值。当我试图输出包含y值的数组时,它只显示0' s。请帮助我解决这个问题。请在下面找到我的代码。
(注意:N =多维数组中的行数,列固定为2)(抱歉,忘记R,用于其他目的)
public class Read{
public static void main(String[] args) {
int N = 1, R=1;
double AoN=1;
float d=0 , e=0, s=0, length=0;
Scanner in = new Scanner(System.in);
int[] arr = new int[2];
System.out.println("Enter values of N and R separated by space: ");
for (int i=0;i<arr.length;i++) {
arr[i]=in.nextInt();
if (arr[0]>=1 && arr[0]<=100) {
N=arr[0]; //storing N
}
R=arr[1]; //storing R
}
float[ ][ ] arr1 = new float[N][2];
System.out.println("Enter Coordinates seperated by spaces: ");
for(int i=0; i<N;i++) {
for (int j=0;j<2;j++) {
arr1[i][j]=in.nextFloat();
//System.out.println(arr1[i][j]);
}
}
float[] x = new float[N];
float[] y = new float[2]; // I've given 2 here coz the coordinates are always x and y. please correct me if im wrong.
for(int i=0; i<N;i++) {
x[i] = arr1[i][0];
System.out.println(x[i]);
}
for (int j=0;j<N;j++) {
y[j] = arr1[0][j];
System.out.println(y[j]);
}
输入:
2 1 (N, R)
0 0 (x1, y1)
1 3 (x2, y2)
输出:
0.0 (x1)
1.0 (x2)
0.0 (y1)
0.0 (y2)
包含&#39; y&#39;的数组输出值始终为0(应为0和3)。善意的帮助。感谢。
答案 0 :(得分:3)
我认为你这里有一个错误......
for (int j = 0; j < N; j++) {
y[j] = arr1[0][j]; // <<< HERE!!
System.out.println(y[j]);
}
我认为你的意思是......
for (int j = 0; j < N; j++) {
y[j] = arr1[j][1];
System.out.println(y[j]);
}
使用您输入的参数,当代码到达“float [] x = ...”位时,“arr”的状态为......
arr = [2, 1]
arr1 = [[0.0, 0.0], [1.0, 3.0]]
第二个块总是选择2d数组的第一个元素,每个“j”值都为“0”