cpp-循环结构
一、while循环
可以简单理解为循环版的if
语句。if
语句是判断一次,如果条件成立,则执行后面的语句;while
是每次判断,如果成立,则执行循环体中的语句,否则停止。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using namespace std;
int main()
{
int i = 0;
while (i < 10)
{
cout << i << endl;
i ++ ;
}
return 0;
}
练习:求斐波那契数列的第n
项。f(1) = 1
, f(2) = 1
, f(3) = 2
, f(n) = f(n-1) + f(n-2)
。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using namespace std;
int main()
{
int n;
cin >> n;
int a = 1, b = 1, i = 1;
while (i < n)
{
int c = a + b;
a = b;
b = c;
i ++ ;
}
cout << a << endl;
return 0;
}
二、do while循环
do while
循环不常用。do while
语句与while
语句非常相似。唯一的区别是,do while
语句限制性循环体后检查条件。不管条件的值如何,我们都要至少执行一次循环。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using namespace std;
int main()
{
int x = 1;
while (x < 1)
{
cout << "x!" << endl;
x ++ ;
}
int y = 1;
do
{
cout << "y!" << endl;
} while (y < 1);
return 0;
}
三、for循环
基本思想:把控制循环次数的变量从循环体中剥离。1
2
3
4for (init-statement : condition: expression)
{
statement
}init-statement
可以是声明语句、表达式、空语句,一般用来初始化循环变量;condition
是条件表达式,和while中的条件表达式作用一样;可以为空,空语句表示true;expression
一般负责修改循环变量,可以为空。1
2
3
4
5
6
7
8
9
10
11
12
13
using namespace std;
int main()
{
for (int i = 0; i < 10; i ++ )
{
cout << i << endl;
}
return 0;
}
四、跳转语句
1. break
可以提前从循环中退出,一般与if
语句搭配。
例题:判断一个大于1的数是否是质数:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using namespace std;
int main()
{
int n;
cin >> n;
bool is_prime = true;
for (int i = 2; i < n; i ++ )
if (n % i == 0)
{
is_prime = false;
break;
}
if (is_prime) cout << "yes" << endl;
else cout << "no" << endl;
return 0;
}
2. continue
可以直接跳到当前循环体的结尾。作用与if
语句类似。
例题:求1~100中所有偶数的和。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using namespace std;
int main()
{
int sum = 0;
for (int i = 1; i <= 100; i ++ )
{
if (i % 2 == 1) continue;
sum += i;
}
cout << sum << endl;
return 0;
}
五、多层循环
1 |
|