Write a loop that generates the following output (exactly as seen):
01, 02: 03, 04: 05, 06; 07, 08: 09, 10: 11, 12; 13, 14: 15.
16: 17, 18; 19, 20: 21, 22: 23, 24; 25, 26: 27, 28: 29, 30.
Except for the leading zeros, numbers are not allowed to be hard coded (use the loop's counter!). A selection statement must be used to determine what punctuation marks to output. Hint: modulo
You may not test for specific numbers when determining punctuation. For example, the following method is not allowed:
if(x == 17 || x == 19 || x == 21)
cout << ",";
The algorithm must be written in a separate function, not in main ().