Advertisement
cesarnascimento

vetor exemplo basico 1

May 15th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. package vetor;
  2.  
  3. public class vetor {
  4.  
  5.     public static void main(String[] args) {
  6.         int n[] = {3,2,8,7,5,4};
  7.        
  8.         for(int c = 0 ;c <=n.length-1; c++){
  9.             System.out.println("Na posiรงรฃo "+c+ " teremos "+n[c]);
  10.         }
  11.     }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement