Homework 7 UCR CS10: Introduction to Computer Programming Fall Quarter 2003, Lecturers: Brian Linard, Kris Miller Due Tuesday, December 2 at the BEGINNING of lecture. 1. Self-test Excercise #7-5 2. Self-test Excercise #7-21 3. Self-test Excercise #7-27 4. Self-test Excercise #7-28 5. Self-test Excercise #7-29 6. Self-test Excercise #7-33 7. Self-test Excercise #7-36 8. Self-test Excercise #7-37 9. Write a for loop that will print to the screen all odd numbers between 0 and 100. The body of the for loop can contain only the following line: cout << i << " "; So, your output will look like: 1 3 5 7 9 11 ..... and so on ..... 95 97 99 10. What is the output of the following code fragment? for (int i = 0; i < 3; i++) { for (int j = 0; j < 100; j++) { cout << i << " * " << j << " = " << i * j << endl; if (j == 2) { break; } } } NOTE: questions 9 & 10 will be graded for actual points!!