Skip to content

Instantly share code, notes, and snippets.

@MladenMladenov
Created July 25, 2015 07:10
Show Gist options
  • Save MladenMladenov/5e6bbb5505d3d3307fd7 to your computer and use it in GitHub Desktop.
Save MladenMladenov/5e6bbb5505d3d3307fd7 to your computer and use it in GitHub Desktop.
using System;
class NumberComparer
{
static void Main()
{
Console.WriteLine("Please enter two numbers:");
double a = double.Parse(Console.ReadLine());
double b = double.Parse(Console.ReadLine());
Console.WriteLine(Math.Max(a,b));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment