public static void Main()
Console.WriteLine("어느 것으로 변환하시겠습니까?");
string input = Console.ReadLine();
Console.WriteLine("당신이 방금 입력한 값은 " + input + " 입니다.");
string DDstr = Console.ReadLine();
float DD = float.Parse(DDstr);
Console.WriteLine("D : " + (int)DD);
Console.WriteLine("M : " + (int)(DD * 60));
S = (float)Math.Round((float)((M - (int)(DD * 60)) * 60), 2);
Console.WriteLine("S : " + S);