C#/수업 과제
포켓몬-토게피
Game Client Lee Hwanguk
2023. 1. 1. 01:21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace 포켓몬
{
internal class Program
{
static void Main(string[] args)
{
string name = "토게피";
string level = "LV.29";
string type = "페어리";
string tall = "키 0.29m";
string weight = "몸무게 1.50kg";
string parents = "어버이 레드";
string IDNo = "IDNo 813968";
string exp = "현재 경험치 19511";
string nextLevel = "다음 레벨까지 2089";
Console.Write("{0}\t{1}\n{0}\t{2}\n{3}\n{4}\n{5}\n{6}\n{7}\n{8}\n", name, level, type, tall, weight, parents, IDNo, exp, nextLevel);
}
}
}