Control structures in C# are essential for directing the flow of a program. They enable developers to make decisions and repeat actions based on specific conditions. In this post, we’ll explore if statements for decision-making and various types of loops for iterative processes.
If Statements:
If statements allow you to execute a block of code if a certain condition is true. Here’s a basic example:
int number = 10;
if (number > 0)
{
Console.WriteLine("The number is positive.");
}
else if (number == 0)
{
Console.WriteLine("The number is zero.");
}
else
{
Console.WriteLine("The number is negative.");
}
Loops:
Loops are used to repeat a block of code multiple times. Let’s explore the for
and while
loops:
For Loop:
for (int i = 0; i < 5; i++)
{
Console.WriteLine($"Iteration {i + 1}");
}
While Loop:
int counter = 0;
while (counter < 3)
{
Console.WriteLine($"Count: {counter + 1}");
counter++;
}
Conclusion:
Control structures are powerful tools for creating dynamic and flexible programs. If statements help you make decisions, and loops enable repetitive tasks. As you incorporate these structures into your C# projects, you’ll gain more control over the execution flow.
Leave a Reply