繁体   English   中英

基于输入的二维数组大小

[英]2d array size based on input

我有一个代码,其中要定义一个数组,其中的大小基于用户输入。 我怎么做?

我的代码如下:

public static void main(String args[]) throws Exception {

    Scanner in = new Scanner(System.in);
    System.out.println("Enter the number of layers in the network:");
    int Nb_Layers = in.nextInt();
    int[] Hidden_layer_len = new int[Nb_Layers];


    for (int i = 0; i < Nb_Layers-1; i++)
    {
        System.out.println("Enter the length of layer" +(i+1)+":");
        Hidden_layer_len[i] = in.nextInt();

        if(i == 0)
        {
            double [][] E = new double[Hidden_layer_len[i]][1];//This is the array I need based on the size mentioned.

        }
    }

    System.out.println(E);
}

我希望这是一个二维数组。 任何建议,将不胜感激。 谢谢你!

您可以在 for 循环外部定义数组并在内部分配。 例如

double[][] E = null;
for (int i = 0; i < Nb_Layers - 1; i++) {
    System.out.println("Enter the length of layer" + (i + 1) + ":");
    Hidden_layer_len[i] = in.nextInt();

    if (i == 0) {
        E = new double[Hidden_layer_len[i]][1];
    }
}

这样,当您最后打印它时,它将可用。
顺便说一句,您可能想像这样打印

System.out.println(Arrays.deepToString(E));

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM