1234567891011121314151617181920212223242526272829303132 |
- namespace praktika_nasledovanie
- {
- internal class Program
- {
- static void Main()
- {
- try
- {
- penguin ob = new penguin();
- Console.WriteLine("Введите, сколько грамм весит ваш пингвин: ");
- ob.massa(Convert.ToInt32(Console.ReadLine()));
- Console.WriteLine(ob.raschet_korma());
- Console.WriteLine();
- Console.WriteLine("Введите отряд птиц: ");
- ob.otryad(Console.ReadLine());
- Console.WriteLine();
- Console.WriteLine("Введите птицу: ");
- ob.speak(Console.ReadLine());
- }
- catch (Exception e)
- {
- Console.WriteLine(e.Message);
- Console.WriteLine(e.StackTrace);
- }
- }
- }
- }
|