Advertisement
apez1

Term 1: Lesson 33 - Coding Activity 3

Nov 24th, 2018
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1. import java.util.Scanner;
  2. import java.math.*;
  3.  
  4. public class  Lesson_33_Activity_Three {
  5.    
  6.     static Scanner scanner = new Scanner(System.in);
  7.    
  8.     public static void printit(int nums[]) {
  9.        
  10.     for(int i = 0; i < nums.length; i++) {
  11.        
  12.         System.out.print(nums[i] + " ");
  13.        
  14.     }
  15.        
  16.        
  17.        
  18.     }
  19.    
  20.    
  21.  
  22.    
  23.    
  24.    
  25.     public static void main(String[] args) {   
  26.            
  27.                
  28.     }
  29.    
  30.    
  31.    
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement