Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Program
- {
- static void Main(string[] args)
- {
- int[] numbers = { 12, 2, 7, 24, 5 };
- Console.WriteLine("Числа, кратные 2м:");
- foreach (int i in numbers)
- {
- if (i % 2 == 0)
- Console.WriteLine(i);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment