Posts by Jhonatan Luiz • 1 point
1 post
-
0
votes2
answers2304
viewsA: How to read three values in the same line? C#
That’s a pretty easy way to do it: using System; namespace uri { class Program { static void Main(string[] args) { string[] texto = Console.ReadLine().Split(" "); int n1 = int.Parse(texto[0]), n2 =…
c#answered Jhonatan Luiz 1