fr0stn1k

C#Light3.3.7_Kovylov

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