//使用while循环。 #includeusingnamespace std; int main() { int i; i=1; while(i<=5)//满足循环条件就进入循环。当不满足循环条件时,循环终止。 { cout<<"Loop number"< <<"in the while loop\n"; i++;//改变i的值,使得循环条件情况改变,不会成为死循环。 } return0; } /*while循环:基本结构为: while(expression) { statement1 statement2 . . . }