C#/수업 과제
포켓몬-럭키
Game Client Lee Hwanguk
2023. 1. 1. 00:51
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.13";
string type = "노말";
string tall = "키 1.26m";
string weight = "몸무게 37.91kg";
string parents = "어버이 레드";
string IDNo= "IDNo 813968";
string exp = "현재 경험치 1757";
string nextLevel = "다음 레벨까지 438";
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);
}
}
}