C#/수업 과제
포켓몬-이브이
Game Client Lee Hwanguk
2023. 1. 1. 00:45
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.NetworkInformation;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
string name = "이브이";
string level = "LV.2";
string type = "노말";
string tall = "키 0.30";
string weight = "몸무게 7.62kg";
string parents = "어버이 레드";
string IDNo= "IDNo 813968";
string exp = "현재 경험치 8";
string nextLevel = "다음 레벨까지 19";
Console.Write("{0}\t{1}\n\t{2}\n{3}\n{4}\n{5}\n{6}\n{7}\n{8}\n", name,level,type,tall,weight,parents,IDNo,exp,nextLevel);
}
}
}