Here, we are asking for an integer input – and checking whether input integer is positive value, negative value or a zero
// C# program to demonstrate example of
// multiple if else statement
using System;
using System.IO;
using System.Text;
namespace IncludeHelp
{
class Test
{
// Main Method
static void Main(string[] args)
{
//input an integer number and check whether
//it is postive, negative or zero
int number;
Console.Write("Enter an integer number: ");
number = Convert.ToInt32(Console.ReadLine());
//checking conditions
if (number > 0)
Console.WriteLine("{0} is a positive number", number);
else if (number < 0)
Console.WriteLine("{0} is a negative number", number);
else
Console.WriteLine("{0} is a Zero", number);
//hit ENTER to exit the program
Console.ReadLine();
}
}
}
Output
Enter an integer number: -123
-123 is a negative number
2) C# example 2 for multiple if else statement
Here, we are asking for a gender – and checking whether input gender is "Male", "Female" or "Unspecified gender".
// C# program to demonstrate example of
// multiple if else statement
using System;
using System.IO;
using System.Text;
namespace IncludeHelp
{
class Test
{
// Main Method
static void Main(string[] args)
{
//input gender and check for "Male", "Female" or "Unspecied gender"
string gender = "";
Console.Write("Enter gender: ");
gender = Console.ReadLine();
if (gender.ToUpper() == "MALE")
Console.WriteLine("He is male");
else if (gender.ToUpper() == "FEMALE")
Console.WriteLine("She is female");
else
Console.WriteLine("Unspecified gender");
//hit ENTER to exit the program
Console.ReadLine();
}
}
}
Output
First run:
Enter gender: male
He is male
Second run:
Enter gender: FEMale
She is female
Third run:
Enter gender: Don't know
Unspecified gender
1) C# example 1 for multiple if else statement
Here, we are asking for an integer input – and checking whether input integer is positive value, negative value or a zero
Output
2) C# example 2 for multiple if else statement
Here, we are asking for a gender – and checking whether input gender is "Male", "Female" or "Unspecified gender".
Output