C语言之for循环
阅读原文时间:2024年06月14日阅读:1

#include
#include
#include
int main()
{
int i;
for(i=1;i<=5;i++)
{
printf("i=%d\n",i);
}
printf("i最后的值为%d\n",i);
return 0;
}
/*
for(i=0;i<5;i++)
i=0
i=1
i=2
i=3
i=4
i最后的值为5

for(i=1;i<=5;i++)
i=1
i=2
i=3
i=4
i=5
i最后的值为6
Press any key to continue
Press any key to continue
*/
//注意:在两个数做运算时,只要有一个是浮点数,计算的结果均为浮点数!

手机扫一扫

移动阅读更方便

阿里云服务器
腾讯云服务器
七牛云服务器

你可能感兴趣的文章