C语言-for循环入门代码

#include 

int main()
{
	int count;

	for (count = 0; count < 10; count++)
	{
		printf("+1\n");
	}
	system("pause");

	return 0;
}
+1
+1
+1
+1
+1
+1
+1
+1
+1
+1
请按任意键继续. . .

灵活的for循环
C语言-for循环入门代码_第1张图片
死循环

while(1)
{
	...
}

在这里插入图片描述

#include 
int main()
{
	int count=0;
	
	for (; count < 10;)
	{
		printf("+1\n");
		count++;
	}

	system("pause");

	return 0;
}
+1
+1
+1
+1
+1
+1
+1
+1
+1
+1
请按任意键继续. . .
int main()
{
	int i,j;

	for (i=0,j=10; i<j;i++,j--)
	{
		printf("%d\n",i);
		
	}

	system("pause");

	return 0;
}
0
1
2
3
4
请按任意键继续. . .

循环中定义的变量,出了循环就不能用了。

循环嵌套

循环嵌套时,先执行内层循环,再执行外层循环。
九九乘法表

#include 
int main()
{
	int i, j;

	for (i = 1; i <= 9; i++)
	{
		for (j = 1; j <= i; j++)
		{
			printf("%d*%d=%-2d", i, j, i*j);
		}
		putchar("\n");
	}
	system("pause");

	return 0;
}

C语言-for循环入门代码_第2张图片

你可能感兴趣的:(C&C++,c语言,开发语言)