2018-10-04 14:47:55 +01:00
|
|
|
---
|
|
|
|
title: If Else Statement
|
|
|
|
---
|
|
|
|
|
|
|
|
# If Else Statement
|
|
|
|
|
2018-10-12 16:05:41 +01:00
|
|
|
The If-Else statement executes a block of code depending on whether your precondition is fullfilled or not.
|
2018-10-04 14:47:55 +01:00
|
|
|
|
|
|
|
## Example
|
|
|
|
```
|
2018-10-12 04:30:38 +05:30
|
|
|
|
|
|
|
if(boolean expression)
|
|
|
|
{
|
|
|
|
// execute this code block if expression evalutes to true
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// always execute this code block when above if expression is false
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-04 14:47:55 +01:00
|
|
|
int Price = 30;
|
|
|
|
|
|
|
|
If (Price = 30)
|
|
|
|
{
|
|
|
|
Console.WriteLine("Price is equal to 30.");
|
|
|
|
}
|
|
|
|
|
|
|
|
Else
|
|
|
|
{
|
|
|
|
Console.WriteLine("Price is not equal to 30.");
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Since we already declared our int Price to be 30, this will be the expected output.
|
|
|
|
|
|
|
|
## Output
|
|
|
|
```
|
|
|
|
Price is equal to 30.
|
|
|
|
```
|