简单斐波那契
#include <stdio.h> int main() { int a; scanf("%d",&a); for(int i=1,b=0,c=1;i<=a;i++) { printf("%d ",b); int d=b+c; b=c; c=d; } return 0; }