mirror of
https://github.com/dotnet/intro-to-dotnet-web-dev.git
synced 2025-12-06 05:32:03 +01:00
5 lines
133 B
C#
5 lines
133 B
C#
int firstValue = 500;
|
|
int secondValue = 600;
|
|
int largerValue = Math.Max(firstValue, secondValue);
|
|
|
|
Console.WriteLine(largerValue); |