1. // 2. 3. #include "stdafx.h" 4. 5. int main(int argc, char* argv[]) 6. { 7. 8. int f1 =1; 9. int f2 =1; 10. 11. 12. for(int a=0;a<20;a++) 13. { 14. printf("%d %d\n",f1,f2); 15. f1+=f2; 16. f2+=f1; 17. } 18. 19. 20. 21. return 0; 22. 23. 24. } 25. 26.