how to add elements to an empty array in java
int[] nums = new int[5];
for(int i = 0; i < nums.length; i++){
nums[i] = i + 2;
System.out.println(nums[i]);
}
/*
OUTPUT:
2 3 4 5 6
each time i is increased by 2
*/
how to add elements to an empty array in java
int[] nums = new int[5];
for(int i = 0; i < nums.length; i++){
nums[i] = i + 2;
System.out.println(nums[i]);
}
/*
OUTPUT:
2 3 4 5 6
each time i is increased by 2
*/
create an empty array in 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++;
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us