/* DATE: 4th Sept. 2014: for loop 1.Write a program that returns the product of two integers using the program below as a prototype. 2. Use the program in 1. to display a table of integers from 1 to 5 and their squares. N Square 1 1 2 4 3 9 3. Write a more general program that inputs two numbers and outputs their product. */ #include using namespace std; int main () { int number ; for (number = 0 ; number <= 1 ; number = number + 1) { cout << "The number " << number << endl ; } return 0; }