Advertisement
zlateL86

ADS 1.1 Average

Oct 22nd, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  1. import java.io.BufferedReader;
  2. import java.io.IOException;
  3. import java.io.InputStreamReader;
  4.  
  5. public class Array<E> {
  6.    
  7.    
  8.     public static int brojDoProsek( ){
  9.         //Code here...
  10.     }
  11.    
  12.     public static void main(String[] args) throws IOException{
  13.         BufferedReader stdin = new BufferedReader( new InputStreamReader(System.in));
  14.         String s = stdin.readLine();
  15.         int N = Integer.parseInt(s);
  16.        
  17.         //Code here...
  18.        
  19.        
  20.         System.out.println(brojDoProsek(niza));    
  21.     }
  22.    
  23.    
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement