for each of the problems listed below write the C++ program using for loop structures
I. A program will calcuate and display the fibonacci sequence
"1 1 2 3 5 8 13...."
II. A program will calculate and display a square matrix multiplication table. For instance a sample output for a 4x4 table is listed below. (Hint. Nested for loops are needed).
1 2 3 4
2 4 6 8
3 6 9 12
4 8 12 16