CS 131 Nested Loop Exercises What code will produce each of the following outputs? Use nested loops for each. You may include them all in a single program. a. 12345 12345 12345 b. 1111111111 2222222222 3333333333 4444444444 c. aaaaaa bbbbbb cccccc dddddd d. * ** *** **** ***** e. input (cin): output (cout): 2 6 3 1 5 0 17 3 5 0 8 6 7 1 1 0 15 Assume 3 sets of data, each with sentinal 0. Include a prompt such as "enter a list of numbers with sentinal 0: ". f. input: output: 2 6 3 1 5 0 17 3 5 0 8 6 7 1 1 0 15 -99 Assume an unknown number of data sets, each with sentinal 0 and 99 at end of all sets. Include a prompt such as "enter a list of numbers with sentinal 0. A sentinal of -99 indicates no more lists". g. 1 2 3 4 2 4 6 8 3 6 9 12 4 8 12 16