ch01.1.2.1.c

来自「c++ primer源代码 第一章chap01」· C语言 代码 · 共 31 行

C
31
字号
//#include <iostream.h>
 #include <iostream>

/**
 **
 the while loop has executed 1 times
 the while loop has executed 2 times
 the while loop has executed 3 times
 the while loop has executed 4 times
 the while loop has executed 5 times
 **
 **/
int main()
{
	int iterations = 0;
	bool continue_loop = true;

	while ( continue_loop != false )
	{
		iterations++;

		cout << "the while loop has executed "
     		     << iterations << " times\n";

		if ( iterations == 5 )
     		     continue_loop = false;
	}

	return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?