Advertisement
Guest User

Untitled

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