Fibonacci Series. 06:25:00 – by Arslan Akram C++ Code #include<iostream> using namespace std; int main() { int a=0,b=1,r,i,c; cout<<"Enter range="; cin>>r; if (r>0) { cout<<a<<" "<<b<<" "; } i=3; while (i<=r) { c=a+b; cout<<c<<" "; a=b; b=c; i++; } } Email ThisBlogThis!Share to XShare to Facebook