#include<iostream>
using namespace std;
int main()
{
int *f;
f=new int[20];
*f=1;
*(f+1)=1;
cout<<*f<<"\t";
cout<<*(f+1)<<"\t";
f=f+2;
for(int i=3;i<=20;i++)
{
*f=*(f-1)+*(f-2);
cout<<*f<<"\t";
if(i%5==0)
cout<<endl;
f++;
}
delete []f;
return 0;
}
作业2.29
最新推荐文章于 2024-03-29 20:04:16 发布