Do-While语句
除了条件检查顺序不同外,这种循环与while循环相同。在这种循环方式内,条件的检查步骤放在每个迭代的最后。
语法
do {
// some_code;
} while(condition);
Parts
- some_code 为执行的代码。
示例
int i = 10;
do {
log.message("%d ",i);
i++;
} while(i < 10);
// 结果为: 10
最新更新:
2019-04-30
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)