AlexRaynor

Untitled

Feb 8th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1.     class Program
  2.     {
  3.         static void Main(string[] args)
  4.         {
  5.             int[] numbers = { 12, 2, 7, 24, 5 };
  6.             Console.WriteLine("Числа, кратные 2м:");
  7.             foreach (int i in numbers)
  8.             {
  9.                 if (i % 2 == 0)
  10.                    
  11.                     Console.WriteLine(i);
  12.             }
  13.  
  14.         }
  15.  
  16.  
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment