Advertisement
borkins

06. Min Number

Mar 30th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.55 KB | None | 0 0
  1. /**
  2.  * Project: Loops - created by borkins on 2017-03-29.
  3.  */
  4.  
  5. import java.util.Scanner;
  6.  
  7. public class _06_MinNumber
  8. {
  9.     public static void main(String[] args)
  10.     {
  11.         Scanner console = new Scanner(System.in);
  12.        
  13.         int n = Integer.parseInt(console.nextLine());
  14.        
  15.         int min = Integer.MAX_VALUE;
  16.        
  17.         for (int i = 0; i < n; i++)
  18.         {
  19.             int num = Integer.parseInt(console.nextLine());
  20.             if (num < min) min = num;
  21.         }
  22.        
  23.         System.out.println(min);
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement