Crea un programa en c# e implementar los siguientes métodos El método de retorne el mayor () de 3 El método que retorne el mejor () de 3 El método que retorne el número intermedio () de 3 números
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { Console.WriteLine("Ingrese un valor"); int a = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Ingrese un valor"); int b = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Ingrese un valor"); int c = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("El mayor es:"); Console.WriteLine(mayor(a, b, c)); Console.WriteLine("El menor es:"); Console.WriteLine(menor(a, b, c)); Console.WriteLine("El intermedio es:"); Console.WriteLine(intermedio(a, b, c)); Console.ReadKey