using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { class Program { static void Main(string[] args) { double a, b, c, d, max, i; Console.WriteLine("*** Program liczy pierwiastki trójmianu kwadratowego ***"); Console.WriteLine(); Console.Write("Podaj a:"); a = Convert.ToDouble(Console.ReadLine()); Console.Write("Podaj b:"); b = Convert.ToDouble(Console.ReadLine()); Console.Write("Podaj c:"); c = Convert.ToDouble(Console.ReadLine()); Console.Write("Podaj d:"); d = Convert.ToDouble(Console.ReadLine()); i = 1; max = a; if (max < b) { max = b; i = 2; } if (max < c) { max = c; i = 3; } if (max < d) { max = d; i = 4; } Console.WriteLine($"a={a}"); Console.WriteLine($"b={b}"); Console.WriteLine($"c={c}"); Console.WriteLine($"d={d}"); Console.WriteLine($"Maksymalna wartość wynosi {max}"); Console.WriteLine($"Maksumalną wartością jest licza {i}"); Console.Write("Wciśnij dowolny klawisz"); Console.ReadKey(); } } }