c语言for循环和水仙花

c语言for循环和水仙花


c语言for循环和水仙花

  • c语言for循环和水仙花
  • 一、for循环语句格式
  • 二、for循环案例水仙花


一、for循环语句格式


for(初始值;表达式;表达式)
{
代码
}

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

二、for循环案例水仙花


int main()
{
	for (int i = 100; i < 1000; i++)
	{int a = 0,  b = 0,  c = 0;
	//百位
	a = i / 100;
	//十位
	b = i / 10 % 10;
	//个位
	c = i % 10;
	if(a*a*a+b*b*b+c*c*c==i)
	{
		printf("%d是水仙花数\n", i);
	}
	}
}

END
c语言for循环和水仙花_第1张图片

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