// Author: Mark Lingle // Modified: February 8, 2008 (Volker Crede) // Date: 1-28-08 #include using namespace std; int main() { int x0 = 1; // These statements initialize and int x1 = 1; // declare the variables int sum = 0; int n = 10; cout << x0 << endl; cout << x1 << endl; // This loop generates the Fibonacci series for // 10 terms starting with x0=1 and x1=1 for (int i=2; i