AlexRaynor

Untitled

Feb 8th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1. class Program
  2.     {
  3.         static void Main(string[] args)
  4.         {
  5.             int[] numbers = { 12, 2, 7, 24, 5 };
  6.             for (int i = numbers.Length - 1; i >= 0; i--)
  7.                 Console.WriteLine(numbers[i]);
  8.         }
  9.  
  10.  
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment