intro-to-dotnet-web-dev/2-csharp/lesson-2-projects/CsharpProjects/challenge5/Program.cs
2023-07-19 19:27:30 -06:00

5 lines
133 B
C#

int firstValue = 500;
int secondValue = 600;
int largerValue = Math.Max(firstValue, secondValue);
Console.WriteLine(largerValue);