C#/수업 과제
포켓몬-꼬지모
Game Client Lee Hwanguk
2023. 1. 1. 00:49
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.25";
string type = "바위";
string tall = "키 1.30m";
string weight = "몸무게 36.95kg";
string parents = "어버이 레드";
string IDNo= "IDNo 813968";
string exp = "현재 경험치 15625";
string nextLevel = "다음 레벨까지 1951";
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);
}
}
}