Advertisement
crackanddie

Vovan cs

Dec 25th, 2022
1,141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.97 KB | None | 0 0
  1. class Program
  2. {
  3.     static void Main(string[] args)
  4.     {
  5.         string filePath = "D:\\Test.txt"; // путь до файла
  6.         StreamReader sr = new StreamReader(filePath);
  7.         string? line = sr.ReadLine();
  8.         sr.Close();
  9.        
  10.         // проверка, что строка считалась
  11.         if (line != null)
  12.         {
  13.             // проверка, что первые два символа это цифры
  14.             if (Char.IsDigit(line[0]) && Char.IsDigit(line[1]))
  15.             {
  16.                 int value = int.Parse(line.Substring(0, 2));
  17.                 if (value % 2 == 0)
  18.                 {
  19.                     Console.WriteLine("Четное");
  20.                 }
  21.                 else
  22.                 {
  23.                     Console.WriteLine("Нечетное");
  24.                 }
  25.             }
  26.             else
  27.             {
  28.                 Console.WriteLine("Не число");
  29.             }
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement