Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Ex05
- {
- class Exam05
- {
- static void Main()
- {
- int a = int.Parse(Console.ReadLine());
- int b = int.Parse(Console.ReadLine());
- int c = int.Parse(Console.ReadLine());
- if (a > b)
- {
- if (a > c) Console.WriteLine("a");
- else Console.WriteLine("c");
- }
- else {
- if (b > c) Console.WriteLine("b");
- else Console.WriteLine("c");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment