欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

习题7.1

程序员文章站 2022-06-09 17:03:29
...
#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;  
}  

习题7.1