added when while loop is used (#34128)

pull/35644/head
despare 2019-03-21 15:13:41 +08:00 committed by The Coding Aviator
parent eef19480f0
commit 08cb91afc5
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
title: While-loop
---
A while loop statement repeatedly executes a target statement as long as a given condition is true.
A while loop statement repeatedly executes a target statement as long as a given condition is true. It is often used when the number of iterations is unknown.
Syntax:
```C++