If Statement
An if statement, also known as conditional statement, is a method of executing a block of code based on a condition. The syntax of an if statement is the following:
if(condition) {
// code to execute
}
It takes an expression and executes the code block if the expression is true
.
For example:
main.cs
12345678910111213141516using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { Console.WriteLine("Before Conditional"); if(10 > 9) { Console.WriteLine("10 is greater than 9"); } Console.WriteLine("After Conditional"); } } }
In case the condition is false
the code block is ignored:
main.cs
12345678910111213141516using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { Console.WriteLine("Before Conditional"); if(10 > 10) { Console.WriteLine("10 is greater than 9"); } Console.WriteLine("After Conditional"); } } }
Thanks for your feedback!
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Can you give me an example of an if statement in JavaScript?
What happens if the condition is false in an if statement?
Can you explain what types of expressions can be used as conditions?
Awesome!
Completion rate improved to 1.59
If Statement
Swipe to show menu
An if statement, also known as conditional statement, is a method of executing a block of code based on a condition. The syntax of an if statement is the following:
if(condition) {
// code to execute
}
It takes an expression and executes the code block if the expression is true
.
For example:
main.cs
12345678910111213141516using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { Console.WriteLine("Before Conditional"); if(10 > 9) { Console.WriteLine("10 is greater than 9"); } Console.WriteLine("After Conditional"); } } }
In case the condition is false
the code block is ignored:
main.cs
12345678910111213141516using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { Console.WriteLine("Before Conditional"); if(10 > 10) { Console.WriteLine("10 is greater than 9"); } Console.WriteLine("After Conditional"); } } }
Thanks for your feedback!