Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. using System;
  2.  
  3. class TheBiggestOf3Numbers
  4. {
  5. static void Main()
  6. {
  7. double a = double.Parse(Console.ReadLine());
  8. double b = double.Parse(Console.ReadLine());
  9. double c = double.Parse(Console.ReadLine());
  10. Console.WriteLine(Math.Max(Math.Max(a, b),(Math.Max(a, c))));
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement