Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Alternatively {
- public static void Integer_Array(){
- /**
- * By: RAD-7 June 19, 2019
- *
- * This program is intended to store the values below [25,
- * 35,15,30,44,26,18,90,75,80] and print them on the console
- * each on a new line.
- */
- int[] int_Array = { 25,35,15,30,44,26,18,90,75,80 };
- for (int i=0; i<int_Array.length; i++){
- System.out.println(int_Array[i]);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment