You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package tutorial;
-
- public class Delcare_And_Init_1D_Array {
- public static void main(String[] args) {
- int i;
- int intRandomNumber[] = new int[5];
- System.out.println("Index" + "\t" + "value");
-
- for( i=0; i < 5; i++ ) {
- intRandomNumber[i] = (int)(Math.random()*1000);
- System.out.println(i + "\t" + intRandomNumber[i]);
- }
-
- }
- }
|