# Bài 12. Cấu trúc lặp với while

## 1. Vòng lặp while

Cú pháp

```python
while <điều kiện>:
    <câu/khối lệnh thực thi khi còn thỏa điều kiện>
```

Ví dụ:

```python
n = float(input("Nhập n: "))
sum = 0
i = 1
while i <= n:
    sum += i
    i +=1    # tăng biến đếm
print("Tổng: ", sum)
input()
```

Output: Bạn tự code để xem output nhé!

## 2. Vòng lặp while - else

Ví dụ:

```python
counter = 0
while counter < 3:
    print("Trong vòng lặp while")
    counter = counter + 1
else:
    print("Trong else, xảy ra khi điều kiện while không còn thỏa.")
```

Output:

`Trong vòng lặp while`\
`Trong vòng lặp while`\
`Trong vòng lặp while`\
`Trong else, xảy ra khi điều kiện while không còn thỏa.`


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://python.dainganxanh.com/chuong2/bai-12.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
