Name your files hw1_<number>.cpp, such as hw1_1.cpp for the first program. Email all files as attachments to my Helios account.
Enter double 1: 5.0 Enter double 2: 10.0 Enter integer 1: 2 Enter integer 2: 3 5.0 / 10.0 is 0.5. 5.0 / 2 is 2.5. 2 / 3 is 0.
Enter integer 1: 3 Enter integer 2: 2 The minimum of 3 and 2 is 2.
Welcome to the CS221 Homework 1 Menu ==================================== 1. Selection 1 2. Selection 2 0. Exit ==================================== Enter selection:Read in the user's selection. If the selection is 1, print "You have selected menu item 1." to the screen. If the selection is 2, print "You have selected menu item 2." to the screen. If the selection is greater than 2, print "You have selected an invalid menu item." to the screen. Use a loop to continue printing the menu to the screen, reading the user's selection and printing one of those three messages until the user enters 0.