using System;
class Cat
{
string name = "Кошка";
int weight = 5;
string color = "белая";
string voice = "Мяу!";
//comments
public void feed()
Console.WriteLine("Мяу! = Спасибо, человек!");
}
public void hello()
Console.WriteLine("Привет, я " + name);
public void hello02 ()
Console.WriteLine("Я "+ color);
public void hello3 ()
Console.WriteLine("Мой вес "+ weight);
public void hello4 ()
Console.WriteLine(""+ voice);
public class Program
public static void Main()
var box = new Cat ();
box.feed();
box.hello();
box.hello02();
box.hello3();
box.hello4();