#include<stdio.h>
int main(
void)
{
int i,x1,x2,x;
x1=
1;
x2=
1;
printf("%6d%6d",x1,x2);
for(i=
1;i<=
8;i++
){
x=x1+
x2;
printf("%6d",x);
x1=
x2;
x2=
x;
}
printf("\n");
return 0;
}
转载于:https://www.cnblogs.com/liruijia199531/p/3357402.html
转载请注明原文地址: https://win8.8miu.com/read-1558811.html