Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Text;
- namespace console
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.OutputEncoding = Encoding.UTF8;
- //заготовка.
- //string[] d_names = new string[100];
- //int k = 0;
- //const int N = 5;
- //string[] allAnimals = new string[N] { "Кошка - 1", "Собака - 2", "Рыбка - 3", "Паук - 4", "Папугай - 5" };
- //Console.WriteLine("Выберите ваше животное:");
- //for(int i =0; i < N; i++)
- //{
- // Console.WriteLine(allAnimals[i]);
- //}
- //Console.WriteLine("Введите номер вашего животного");
- //int anim = Convert.ToInt32(Console.ReadLine());
- Dog Jek = new Dog("attack", "corgi", "short", 4, true, 23, 60, "sausages");
- Dog Drake = new Dog("defence", "mops", "long", 4, true, 15, 40, "neskwik");
- var n_dog1 = Jek * Drake;
- Console.WriteLine(Jek);
- Console.WriteLine(Drake);
- Console.WriteLine(n_dog1);
- Console.ReadLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement