static void Main(string[] args)
Console.WriteLine("enter the radius of circle");
float r = float.Parse(Console.ReadLine());
Console.WriteLine("enter what do you want from diameter,circumstance or area of the circle? ");
string ans=Console.ReadLine();
Console.WriteLine("the diameter of the circle is:{0}", diameter(r));
else if (ans == "circumstance")
Console.WriteLine("the circumstance of the circle is:{0}", circumstance(r));
Console.WriteLine("the area of the circle is : {0}", area(r));
Console.WriteLine("please check what you entered and try again...");
static float diameter(float r)
static double circumstance(double r)
static double area(double r)