Advertisement
davegimo

ciclo1

Mar 3rd, 2021
848
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. public class HelloWorld{
  2.  
  3.      public static void main(String []args){
  4.        
  5.         int[] a = {3,5,6,7,1,6,8,11,1000,1,5,5,5342,56,3};
  6.        
  7.         for (int i = 0; i < a.length; i++) {
  8.             System.out.println(a[i]);
  9.         }
  10.        
  11.        
  12.        
  13.        
  14.      }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement