This program illustrates the comparison of maps using the relational operators. Press Enter to continue ... We begin by creating three maps. Press Enter to continue ... Here are the pairs in the first map: A 65 B 66 C 67 D 68 Press Enter to continue ... Here are the pairs in the second map: A 65 B 66 C 67 D 68 E 69 Press Enter to continue ... The contents of the third map are the same as the second. Press Enter to continue ... Now we perform and show the results of some map comparisons. Press Enter to continue ... m1 < m2 = true m1 <= m2 = true m1 > m2 = false m1 >= m2 = false m2 == m3 = true m2 != m3 = false Press Enter to continue ...