While语句
最简单的循环语句。
语法#
while(condition) {
// some_code;
}
部分#
- condition 为 真时,在循环中执行some_code。 If condition一开始就为假,永远不会执行 some_code。
示例#
int i = 0;
while(i < 10) {
log.message("%d ",i);
i++;
}
// 输出为: 0 1 2 3 4 5 6 7 8 9
最新更新:
2018-12-27
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)