Program.cs 913 B

1234567891011121314151617181920212223242526272829303132
  1. namespace praktika_nasledovanie
  2. {
  3. internal class Program
  4. {
  5. static void Main()
  6. {
  7. try
  8. {
  9. penguin ob = new penguin();
  10. Console.WriteLine("Введите, сколько грамм весит ваш пингвин: ");
  11. ob.massa(Convert.ToInt32(Console.ReadLine()));
  12. Console.WriteLine(ob.raschet_korma());
  13. Console.WriteLine();
  14. Console.WriteLine("Введите отряд птиц: ");
  15. ob.otryad(Console.ReadLine());
  16. Console.WriteLine();
  17. Console.WriteLine("Введите птицу: ");
  18. ob.speak(Console.ReadLine());
  19. }
  20. catch (Exception e)
  21. {
  22. Console.WriteLine(e.Message);
  23. Console.WriteLine(e.StackTrace);
  24. }
  25. }
  26. }
  27. }