Advertisement
joseleonweb

Untitled

Aug 26th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. public class MostraArray {
  2.  
  3.   public static void main(String[] args) {
  4.  
  5.     int array[] = {1, 12, 4, 5, 7, 9, 0, 9, 6, 7};
  6.  
  7.     for (int i = 0; i < array.length; i++) {
  8.       System.out.println(array[i]);
  9.     }
  10.   }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement