2
How do I get the number typed by the user, whether positive or negative, reversed?
using System;
namespace POOTeste
{
class Program2
{
static int Main(string[] args)
{
int numero;
Console.Write("Digite um número positivo ou negativo: ");
numero = int.Parse(Console.ReadLine());
Console.Write($"O valor inverso é {numero}");
Console.ReadKey();
return 0;
}
}
}
You can multiply by -1 to reverse its value, and check if it is negative with
< 0
.– CypherPotato