/* קלט: טור של 16 תווים מטופס ספורטוטו ______________________________________פלט: */ using System; public class Toto { public static void Main() { const int NUM_OF_GAMES = 16; int d = 0; char score; for (int i = 0; i < NUM_OF_GAMES; i++) { Console.Write("Enter the score: "); score = char.Parse(Console.ReadLine()); if (score == 'X') d++; } // for Console.WriteLine(d); } // Main } // Toto