namespace ConsoleApp
{
ย ย class Program
ย ย {
ย ย ย ย public static void Main()
ย ย ย ย {
ย ย ย ย ย ย WriteLine("์์ ๊ธธ์ด๋ฅผ ์ ๋ ฅํ์์ค. ");
ย ย ย ย ย ย float length = float.Parse(Console.ReadLine());
ย ย ย ย ย ย ย
ย ย ย ย ย ย float Circle = length * (float)Math.PI;
ย ย ย ย ย ย float Area = 2 * Circle;
ย ย ย ย ย ย float Round = length * Circle;
ย ย ย ย ย ย WriteLine("์์ ๋๋ ๋ {0}, ๋์ด๋ {1} ์ ๋๋ค.", Area, Round);
ย ย ย ย }
ย ย }
}
์ผ๊ธฐ๋ ์ธ๋๊ฒ์๊ฐ๋ฐ๊ฐค์.
ใ ใ ใ ํ์ดํ !