7.1 分析并写出下面程序的运行结果
程序员文章站
2022-06-06 07:53:30
...
#include <stdio.h>
//#include <stdlib.h>
int square(int i)
{
return i*i;
}
int main()
{
int i=0;
i=square (i);
for (;i<3;i++)
{
static int i=1;
i+=square (i);
printf("%d,",i);
}
printf("%d\n",i);
return 0;
}
上一篇: UG怎么快速建模普通玻璃杯子? ug水杯的建模方法
下一篇: PHP随机数生成与使用解析