using java, define an array of five elements, put an initial random values in it, then print its values
- برمجة جافا
- 2022-04-08
- softwareEngineer
الأجوبة
int a[]={7,8,6,5,9};
System.out.println(a[0]);//printing the first element of the array
System.out.println(a[1]);
System.out.println(a[2]);
System.out.println(a[3]);
System.out.println(a[4]);//printing the last element of the array
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال