Fibonacci 1

#include<stdio.h> int main(){ int k,r; int i=0,j=1,f; scanf( "%d",r); for(i=2;i<r;i++){ f=i+j; i=j; j=f; printf("%d",f); } return 0; }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.