Programma3/Program.cs
La Programmatrice Verde 0828e001dd Initial commit
2024-10-23 08:30:17 +02:00

13 lines
365 B
C#

// See https://aka.ms/new-console-template for more information
int numero=0;
Console.Write("Inserire un numero: ");
numero=Convert.ToInt32(Console.ReadLine());
if (numero>0){
Console.WriteLine("Il numero è positivo.");
}
else if (numero<0){
Console.WriteLine("Il numero è negativo.");
}
else{
Console.WriteLine("Il numero è zero.");
}