c#/수업 과제

Chain Gloves

yeeendy 2022. 12. 30. 17:02


  
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
string nickname;
nickname = "Chain Gloves";
Console.WriteLine("{0}", nickname);
int minArmor = 42;
int maxArmor = 55;
Console.WriteLine("{0} - {1}", minArmor, maxArmor);
string properties;
properties = "4";
Console.WriteLine("+{0} Random Magic Properties", properties);
string person;
person = "Blacksmith";
Console.WriteLine("Crafted By: {0} (Level 1)", person);
}
}
}

'c# > 수업 과제' 카테고리의 다른 글

버스트  (0) 2023.01.01
Splint Mail Gloves  (0) 2022.12.30
Hide Gloves  (0) 2022.12.30
Gloves  (0) 2022.12.30
Empyrean Band  (0) 2022.12.30