Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace task_6
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("Please write a: ");
- double a = double.Parse(Console.ReadLine());
- Console.WriteLine("Please write b: ");
- double b = double.Parse(Console.ReadLine());
- Console.WriteLine("Please write c: ");
- double c = double.Parse(Console.ReadLine());
- Console.WriteLine("Please write d: ");
- double d = double.Parse(Console.ReadLine());
- Console.WriteLine("Please write e: ");
- double e = double.Parse(Console.ReadLine());
- if ((a > b) && (a > c) && (a > d) && (a > e)) Console.WriteLine("The biggest is: " + a);
- if ((b > a) && (b > c) && (b > d) && (b > e)) Console.WriteLine("The biggest is: " + b);
- if ((c > b) && (c > a) && (c > d) && (c > e)) Console.WriteLine("The biggest is: " + c);
- if ((d > b) && (d > a) && (d > c) && (d > e)) Console.WriteLine("The biggest is: " + d);
- if ((e > b) && (e > a) && (e > d) && (e > c)) Console.WriteLine("The biggest is: " + e);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement