Advertisement
sergezhu

Untitled

Mar 30th, 2023
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.78 KB | None | 0 0
  1. Console.InputEncoding = Encoding.Unicode;
  2. Console.OutputEncoding = Encoding.Unicode;
  3.        
  4. Console.WriteLine( "Введите имя:" );
  5. string userName = Console.ReadLine();
  6.        
  7. Console.WriteLine( "Введите возраст:" );
  8. string userAgeRaw = Console.ReadLine();
  9. int userAge = int.Parse( userAgeRaw );
  10.        
  11. Console.WriteLine( "Введите знак зодиака:" );
  12. string zodiac = Console.ReadLine();
  13.        
  14. int remains10 = userAge % 10;
  15. int remains100 = userAge % 100;
  16.        
  17. string yearSign = remains10 == 0 || remains10 > 4 || (remains100 >= 11 && remains100 <= 14)
  18.     ? "лет"
  19.     : remains10 == 1
  20.         ? "год"
  21.         : "годa";
  22.        
  23. Console.WriteLine( $"Вас зовут {userName}, вам {userAge} {yearSign}, вы {zodiac} и работаете на заводе." );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement