#include <iostream> using namespace std; int main() { //do...while语句 //在屏幕中输出0到9这10个数字 int num = 0; do { cout << num << endl; num++; } while (num < 10); //do...while和while循环区别,do...while会先执行一次循环语句,while条件为0不执行 system("pause"); return 0; }
2023-10-26 10:48:34
#include <iostream> using namespace std; int main() { //do...while语句 //在屏幕中输出0到9这10个数字 int num = 0; do { cout << num << endl; num++; } while (num < 10); //do...while和while循环区别,do...while会先执行一次循环语句,while条件为0不执行 system("pause"); return 0; }
下一篇:无法通过ip访问redis服务