#include <iostream>
using namespace std;
int main() {
//do...while 和 while最大的区别就是do...while会至少执行一次。
int x = 10;
do
{
cout << x << endl;
x += 1;
} while (x < 10);
//就像这种情况,x已经等于10,while的判断条件就是x是否小于10,因为x已经等于10,
//所以会执行一次do里面的 cout << x << endl;
cout << "--------------" << endl;
x = 10;
while (x < 10)
{
//反过来像这种情况,由于x已经等于10,所以while直接跳出循环,不在执行
cout << x << endl;
x += 1;
}
return 0;
}
发表回复