파일 목록
-
📁 10
-
📁 3
-
📁 4
-
📁 4-minicalc
-
📁 7
-
📁 parking manager
- 2.cs
- desktop.ini
- Title.png
- 객체지향 3대 특징(+1).txt
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//코드는 줄 당 60~100자가 맞음
namespace week10
{
internal class Cat : Animal
{
public Cat(string name, int age)
: base(name, age) { //없으면 기본으로 만들어줌
}
public void Meow() //짖다 = Bakr
{
Console.WriteLine(this.name + ":끼에엥오옭");
}
public override void sleep()
{
Console.WriteLine("냥이는 구석에 짱..박혀서");
}
}
}