关于while以及do-while,一些人会感到很陌生,我来说一下。
while和do-while虽然都是while,但是相对来说,它们的运行方式是相反的。
1.while
对于while来说,它的结构是这样的:
- #include
- using namespace std;
-
- int main()
- {
- int n;
- cin >> n;
- int couunt = 0;
- while (n > 0)
- {
- count++;
- n--;
- }
- cout << count << endl;
- return 0;
- }
例如上面的,这是一个简单的计数程序,while后面的括号是它的运行条件,大括号里是语句,直到条件不为真时,就跳出循环,执行后面的。
2.do-while
对于do-while,是这样的:
-
- #include
- using namespace std;
-
- int main()
- {
- int n;
- cin >> n;
- int count = 0;
- do
- {
- count++;
- n--;
- }while(n > 0);
- cout << count << endl;
- return 0;
- }
-
-
do-while是反着的,先执行,再看符不符合条件。
好了,这就是对while以及do-while的介绍()。