baidut / baidut/Programming-in-C
循环语句
Open
- Dominant language
- C
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
for为确定次数的循环,for n times,
y plus x multiple x for x = 1 to 10 step 2
```
for(x = 1; x <= 10; i += 2) y += x *x;
```
while为不确定的循环
解决loop and a half问题通过循环中部跳出的办法
笔记整理自 公开课 编程方法学(java)
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.