public static void Main()
Console.WriteLine("ÁREA, VOLUMEN Y CIRCUNFERENCIA");
Console.WriteLine("1. CIRCUNFERENCIA");
Console.WriteLine("2. AREA");
Console.WriteLine("3. VOLUMEN");
Console.WriteLine("SELECCIONE UNA OPCION (1-3): ");
option = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("ingrese el primer numero: ");
numberOne = Convert.ToInt32(Console.ReadLine());
result = Math.PI * 2 * numberOne;
mensaje = "LA CIRCUNFERENCIA DE UN CIRCULO DE RADIO: " + numberOne.ToString() + " ES: "+ result.ToString() + " metros";
result = Math.Pow(numberOne,2) * Math.PI;
mensaje = "El AREA DE UN CIRCULO DE RADIO: " + numberOne.ToString() + " ES: "+ result.ToString() + " metros cuadrados";
result = 4.0/3.0 * Math.PI * Math.Pow(numberOne,3);
mensaje = "EL VOLUMEN DE UN CIRCULO DE RADIO: " + numberOne.ToString() + " ES: "+ result.ToString() + " metros cúbicos";
Console.WriteLine(mensaje);