아카이브
Dagger 본문
using System;
namespace HelloWorld
{
internal class Program
{
static void Main(string[] args)
{
string weapon = "Dagger";
float damage = 20.2f;
int minDamage = 7;
int maxDamage = 20;
float attackSpeed = 1.50f;
Console.WriteLine(weapon);
Console.WriteLine(weapon);
Console.WriteLine();
Console.WriteLine(damage);
Console.WriteLine("Damage Per Second \n\n{0}-{1} Damage", minDamage, maxDamage);
Console.WriteLine("{0:0.00} Attacks per Second", attackSpeed);
}
}
}
'C#프로그래밍' 카테고리의 다른 글
스타크래프트 enum (0) | 2023.07.20 |
---|---|
스타크래프트 (0) | 2023.07.19 |
Morning Star (0) | 2023.07.19 |
Hand Axe (0) | 2023.07.19 |
Helloworld (0) | 2023.07.19 |