글
C# paiza 60 - RPG 클래스 출력2
// RPGの冒険者クラスを作ろう
using System;
public class Practice
{
public static void Main()
{
var adventurer = new Adventurer("冒険者");
var wizard = new Adventurer("ウィザード");
var crusader = new Adventurer("クルセイダー");
var priest = new Adventurer("プリースト");
Adventurer[] party = {adventurer, wizard, crusader, priest};
foreach (Adventurer player in party)
{
player.Attack();
}
}
}
///
모험자, 위자드, 크루세이더, 프리스트 출력
///
// Adventurerクラスを定義する
public class Adventurer
{
private string name;
public Adventurer(string name)
{
this.name = name;
}
public void Attack()
{
Console.WriteLine(name + "は魔王を攻撃した");
}
}
/////////////
////
'프로그래밍' 카테고리의 다른 글
C# paiza 62 - 억세스 수식자 이해하기 (0) | 2020.05.17 |
---|---|
C# paiza 61 - 사과 금액 구하기 (0) | 2020.05.17 |
C# paiza 59 - 클래스 출력(RPG로 적을 출력하기) (0) | 2020.05.16 |
C# paiza 58 - 변수를 클래스로 이해 (0) | 2020.05.16 |
C# paiza 57 - 오브젝트 지향 클래스, 메소드 (0) | 2020.05.16 |