fix: converted single to triple backticks5 (#36232)

This commit is contained in:
Randell Dawson
2019-06-20 14:14:23 -07:00
committed by Tom
parent 63a0fa745b
commit fce8901c56
75 changed files with 1299 additions and 1139 deletions

View File

@@ -10,18 +10,20 @@ A For Loop هو عبارة تكرارية تستخدم للتحقق من وجو
## بناء الجملة
`for ( init; condition; increment ) {
statement(s);
}
`
```
for ( init; condition; increment ) {
statement(s);
}
```
من المسموح به لوضع الزيادة insie للحلقة مثل في حلقة في حين. بمعنى أن بناء الجملة مثل هذا يمكن أن يعمل أيضًا.
`for ( init; condition;) {
statement(s);
increment;
}
`
```
for ( init; condition;) {
statement(s);
increment;
}
```
### فيه