mirror of
https://github.com/dotnet/intro-to-dotnet-web-dev.git
synced 2025-12-06 05:32:03 +01:00
Merge pull request #1 from Isaac3924/Lesson_2_Challenge_5
Lesson 2 challenge 5
This commit is contained in:
commit
a8f1f96a7c
|
|
@ -0,0 +1,5 @@
|
||||||
|
int firstValue = 500;
|
||||||
|
int secondValue = 600;
|
||||||
|
int largerValue = Math.Max(firstValue, secondValue);
|
||||||
|
|
||||||
|
Console.WriteLine(largerValue);
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
Loading…
Reference in a new issue