30 lines
696 B
C#
30 lines
696 B
C#
|
/*
|
||
|
* C# Program to Accept a Number from the user and Display it
|
||
|
* if it is Positive
|
||
|
*/
|
||
|
using System;
|
||
|
class program
|
||
|
{
|
||
|
public static void Main(string[] args)
|
||
|
{
|
||
|
Console.WriteLine("Enter a number: ");
|
||
|
int number = Convert.ToInt32(Console.ReadLine());
|
||
|
if (number > 0)
|
||
|
{
|
||
|
Console.WriteLine("Number is positive");
|
||
|
}
|
||
|
else if (number == 0)
|
||
|
{
|
||
|
Console.WriteLine("Number is 0");
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
Console.WriteLine("Number is negative");
|
||
|
}
|
||
|
Console.ReadLine();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
Enter a Number : -4
|
||
|
Number is Negative
|