Дана строка символов, состоящая из произвольных десятичных цифр, разделенных пробелами. Вывести количество четных чисел в этой строке. Составить программу в c# и желательно скинуть скиллетт. Очень надо !
namespace Znanija1 { internal class Program { public static void Main(string[] args) { int c = 0; string s; s = Console.ReadLine(); var a = s.Split(' '); for (int i = 0; i < a.Length; ++i) { if (Int32.Parse(a[i]) % 2 == 0) { c++; } } Console.Write(c); } } }
Answers & Comments
Verified answer
using System;using System.Collections.Generic;
namespace Znanija1 {
internal class Program {
public static void Main(string[] args) {
int c = 0;
string s;
s = Console.ReadLine();
var a = s.Split(' ');
for (int i = 0; i < a.Length; ++i) {
if (Int32.Parse(a[i]) % 2 == 0) {
c++;
}
}
Console.Write(c);
}
}
}