编写程序列出Fibonacci数列的前20项.

问题描述:

编写程序列出Fibonacci数列的前20项.

#include
int main()
{
int a=1,b=1,c;
for(int i=0;i