Suppose you want to display numbers 1 to 100 on the screen. Based on what we studies so far, you will have to write one hundred cout statements. If you think about it, all you are doing is adding one to the previous number and displaying it over and over again until 100 has been displayed. Let us write the steps to do it. Number gets 1. Display the number Add one to it Repeat these two statements. Stop when 100 has been displayed. Let us rework it with some numbers. Number = 1 Do the following statements (in brackets).