Guest User

Untitled

a guest
Apr 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. private int[] weapons = {1,2,3,4,5};
  2. public void printWeaponIds(){
  3. for(int i : weapons){
  4. System.out.println(Integer.toString(i));
  5. }
  6. }
Add Comment
Please, Sign In to add comment