五、程序流程结构(2)循环结构——for循环

发布时间:2024年01月16日

作用:满足循环条件,执行循环语句

语法:

for(起始表达式;条件表达式;末尾循环体)
{循环语句};

1、打印1-10?

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
int main()
{
	//打印1-10
	int i = 0;

	for ( ; ; )
	{
		if (i >= 10)
		{
			break;
		}
		cout << i << endl;
		i++;
	}
	system("pause");

	return 0;
}

运行结果:

0
1
2
3
4
5
6
7
8
9

2、敲桌子

从1开始数到数字100,如果数字个位含有7,或者数字十位含有7,

或者该数字是7的倍数,打印敲桌子,其余数字直接打印输出

法一:

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
int main()
{
	int i = 0;
	for (i=1;i<=100;i++)
	{
		//先输出1-100
		//cout << i << endl;
		if (i % 7 == 0)		//1、7的倍数
		{
			cout << i << " 敲桌子" << endl;
		}
		else if (i % 10 == 7)	//2、个位有7
		{
			cout << i << " 敲桌子" << endl;
		}
		else if(i/10==7)	//3、十位有7
		{
			cout << i << " 敲桌子" << endl;
		}
	}

	system("pause");

	return 0;
}

运行结果:

1
2
3
4
5
6
7 敲桌子
8
9
10
11
12
13
14 敲桌子
15
16
17 敲桌子
18
19
20
21 敲桌子
22
23
24
25
26
27 敲桌子
28 敲桌子
29
30
31
32
33
34
35 敲桌子
36
37 敲桌子
38
39
40
41
42 敲桌子
43
44
45
46
47 敲桌子
48
49 敲桌子
50
51
52
53
54
55
56 敲桌子
57 敲桌子
58
59
60
61
62
63 敲桌子
64
65
66
67 敲桌子
68
69
70 敲桌子
71 敲桌子
72 敲桌子
73 敲桌子
74 敲桌子
75 敲桌子
76 敲桌子
77 敲桌子
78 敲桌子
79 敲桌子
80
81
82
83
84 敲桌子
85
86
87 敲桌子
88
89
90
91 敲桌子
92
93
94
95
96
97 敲桌子
98 敲桌子
99
100

法二:

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
int main()
{
	int i = 0;
	for (i = 1; i <= 100; i++)
	{
		if (i % 7 == 0|| i % 10 == 7|| i / 10 == 7)
		{
			cout << i << " 敲桌子" << endl;
		}
		else
		{
			cout << i << endl;
		}
	}

	system("pause");

	return 0;
}

文章来源:https://blog.csdn.net/All_are_vanity/article/details/135619006
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。