본문 바로가기

C#/수업 과제

과제 1

using System;

namespace HelloWorld
{
	public class Program
	{
		public static void Main()
		{
			String name;
			name = "Hand Axe";
			String type;
			type = "Axe";
			float dps;
			dps = 3.2f;
			string damage;
			damage = "2-3";
			float aps;
			aps = 1.30f;
			
			Console.WriteLine("{0}", name);
			Console.WriteLine("{0}", type);
			Console.WriteLine("{0} {1}", dps, "Damage Per Second");
			Console.WriteLine("{0} {1}", damage , "Damage");
			Console.WriteLine("{0:f2} {1}", aps, "Attacks per Second");
		}
	}
}

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

과제 2 - 5  (0) 2021.08.17
과제 2 - 4  (0) 2021.08.17
과제 2 - 3  (0) 2021.08.17
과제 2 - 2  (0) 2021.08.17
과제 2 - 1  (0) 2021.08.17