Advertisement
DenchikNO

arr1

Oct 16th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. public class Main {
  2.  
  3.     public static void main(String[] args) {
  4.        int a[] = new int[] {4, 2, 5, 4, 12, 6, 7, 8, 9, 10};
  5. for (int i: a) {
  6.     System.out.print(i);
  7. }
  8.         }
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement