Posts by Emi Muniz • 59 points
2 posts
-
-1
votes2
answers2304
viewsQ: How to read three values in the same line? C#
How can I put three values on the same line separated by space in C#? And then work with them? Problem: https://www.urionlinejudge.com.br/judge/pt/problems/view/1079…
-
4
votes2
answers233
viewsQ: When I type broken number, it removes the comma and sums as integer
static void Main(string[] args) { Console.Write("Digite sua primeira nota: "); double n1 = Convert.ToDouble(Console.ReadLine()); Console.Write("Digite sua segunda nota: "); …