Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Compare 2 int
//Title of this code //Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { int a = Convert.ToInt32(Console.ReadLine()); int b = Convert.ToInt32(Console.ReadLine()); if (a > b) { Console.WriteLine(a); } else { Console.WriteLine(b); } } } }
run
|
edit
|
history
|
help
0
https://www.facebook.com/gluncev
GP-TIME
Конструктор классов + static
c# specialization/overload
Enumerable
lambda funcs C#
Fórum ➡ Building a List<> with questions and answers, from data in TXT file, using LINQ ♦
11
IEnumerable<T> generic interface implementation
Strings in C# with some properties examples