borkins

02. Numbers Reversed

Apr 12th, 2017
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1. /**
  2.  * Project: Advanced_Loops - created by borkins on 2017-04-08.
  3.  */
  4.  
  5. import java.util.Scanner;
  6.  
  7. public class _02_NumbersReversed
  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.         for (int i = n; i >= 1; i--) {
  16.             System.out.println(i);
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment