Ask [Lớp học lập trình] Bài 2: Cấu trúc điểu khiển trong C# Part 1 2

GologinMalta006

New member
.Cấu trúc điều khiển trong C# (Phần 1)

Lập trình #C #control Structures #Programming #Tutorial

** Cấu trúc điều khiển ** được sử dụng để kiểm soát luồng thực thi chương trình.Chúng cho phép bạn chỉ định phần nào trong mã của bạn sẽ được thực thi và theo thứ tự nào.

Có ba loại cấu trúc điều khiển chính trong C#:

*** Trình tự: ** Các câu lệnh trong một chương trình được thực hiện theo thứ tự chúng xuất hiện.
*** Lựa chọn: ** Cấu trúc lựa chọn cho phép bạn thực hiện các câu lệnh khác nhau tùy thuộc vào giá trị của một điều kiện.
*** Lặp lại: ** Cấu trúc lặp cho phép bạn lặp lại một khối các câu lệnh một số lần được chỉ định hoặc cho đến khi một điều kiện được đáp ứng.

## Sự liên tiếp

Cấu trúc điều khiển đơn giản nhất là cấu trúc trình tự.Trong một cấu trúc trình tự, các câu lệnh được thực thi theo thứ tự chúng xuất hiện.Ví dụ:

`` `C#
int x = 10;
int y = 20;
int z = x + y;

Console.WriteLine (Z);// In 30
`` `

## Lựa chọn

Cấu trúc lựa chọn cho phép bạn thực hiện các câu lệnh khác nhau tùy thuộc vào giá trị của một điều kiện.Loại cấu trúc lựa chọn phổ biến nhất là câu lệnh ** if-else **.Cú pháp của câu lệnh IF-Else như sau:

`` `C#
if (điều kiện) {
// Các câu lệnh sẽ được thực thi nếu điều kiện là đúng
} khác {
// Các câu lệnh sẽ được thực thi nếu điều kiện là sai
}
`` `

Ví dụ:

`` `C#
int x = 10;

if (x> 0) {
Console.WriteLine ("x là dương");
} khác {
Console.WriteLine ("x là âm");
}
`` `

## Lặp lại

Cấu trúc lặp cho phép bạn lặp lại một khối các câu lệnh một số lần được chỉ định hoặc cho đến khi một điều kiện được đáp ứng.Loại cấu trúc lặp phổ biến nhất là ** cho vòng lặp **.Cú pháp của vòng lặp cho vòng như sau:

`` `C#
for (int i = 0; i <10; i ++) {
// Các câu lệnh được thực thi cho mỗi lần lặp của vòng lặp
}
`` `

Ví dụ:

`` `C#
for (int i = 0; i <10; i ++) {
Console.WriteLine (i);
}
`` `

## Phần kết luận

Cấu trúc kiểm soát là một phần thiết yếu của bất kỳ ngôn ngữ lập trình.Chúng cho phép bạn kiểm soát luồng thực thi chương trình của bạn và làm cho mã của bạn dễ đọc và có thể duy trì hơn.
=======================================
. Control structures in C# (Part 1)

#C programming #control structures #Programming #Tutorial

**Control structures** are used to control the flow of execution of a program. They allow you to specify which parts of your code will be executed and in what order.

There are three main types of control structures in C#:

* **Sequence:** The statements in a program are executed in the order in which they appear.
* **Selection:** A selection structure allows you to execute different statements depending on the value of a condition.
* **Iteration:** An iteration structure allows you to repeat a block of statements a specified number of times or until a condition is met.

## Sequence

The simplest control structure is the sequence structure. In a sequence structure, the statements are executed in the order in which they appear. For example:

```c#
int x = 10;
int y = 20;
int z = x + y;

Console.WriteLine(z); // Prints 30
```

## Selection

A selection structure allows you to execute different statements depending on the value of a condition. The most common type of selection structure is the **if-else statement**. The syntax of an if-else statement is as follows:

```c#
if (condition) {
// Statements to be executed if the condition is true
} else {
// Statements to be executed if the condition is false
}
```

For example:

```c#
int x = 10;

if (x > 0) {
Console.WriteLine("x is positive");
} else {
Console.WriteLine("x is negative");
}
```

## Iteration

An iteration structure allows you to repeat a block of statements a specified number of times or until a condition is met. The most common type of iteration structure is the **for loop**. The syntax of a for loop is as follows:

```c#
for (int i = 0; i < 10; i++) {
// Statements to be executed for each iteration of the loop
}
```

For example:

```c#
for (int i = 0; i < 10; i++) {
Console.WriteLine(i);
}
```

## Conclusion

Control structures are an essential part of any programming language. They allow you to control the flow of execution of your program and to make your code more readable and maintainable.
 
Join ToolsKiemTrieuDoGroup
Back
Top
AdBlock Detected

We get it, advertisements are annoying!

Sure, ad-blocking software does a great job at blocking ads, but it also blocks useful features of our website. For the best site experience please disable your AdBlocker.

I've Disabled AdBlock