Guest User

Untitled

a guest
May 25th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. class ForArray {
  2. public static void main (String[] args) {
  3. int[] angka = {20, 30, 40, 50};
  4.  
  5. for (int x : angka) {
  6. System.out.println(x / 10);
  7. }
  8. }
  9. }
Add Comment
Please, Sign In to add comment