Guest User

Untitled

a guest
Jun 25th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.13 KB | None | 0 0
  1. public static void printNums(int[] nums){
  2.  
  3.     for(int i = 0; i < nums.length; i++){
  4.         System.out.println(nums[i] + " "); 
  5.     }
  6. }
Add Comment
Please, Sign In to add comment