“Создайте пустой массив на Java” Ответ

пустой массив Java

//where n is the length you want the array to be
// for integer array
int[] intArray = new int[n];
// for String array
String[] strArray = new String[n];
Precious Puffin

Создайте пустой массив на Java

public static void main(String args[])
{
    int array[] = new int[4];
    int number = 5, i = 0,j = 0;
    while (i<4){
        array[i]=number;
        i=i+1;
    }
    while (j<4){
        System.out.println(array[j]);
        j++;
    }
}
Joyful Johnston

пустой массив Java


int[] notAnArray = null;

Defiant Dove

Ответы похожие на “Создайте пустой массив на Java”

Вопросы похожие на “Создайте пустой массив на Java”

Больше похожих ответов на “Создайте пустой массив на Java” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования