Advertisement
Guest User

Got18

a guest
Feb 23rd, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.50 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Got18
  4. {
  5.     internal static class Program
  6.     {
  7.         public static void Main()
  8.         {
  9.             Console.Write("Введите ваш возраст: ");
  10.             if (int.TryParse(Console.ReadLine(), out var age))
  11.                 Console.WriteLine(age >= 18 ? "Я работаю." : "Я отказываюсь работать!");
  12.             else
  13.                 Console.WriteLine("Вы ввели некорректные данные!");
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement