makes it in c++
Kyal is in line at theDMV he has number 325, they are currently serving customer 320.
Use a switch statementto determine which type of loop he needs to use to count to histurn being called.
f = for loop w = while loop d = do-while loop
Output the appropriate loop type from the switch.
Then use any loop typeto get from 320 to 325.
Select the appropriate loop type f= for, w =while, d= do-while[output of appropriate loop type]320321322323324325It is your turn
the projram starts her..
#include
using namespace std;
int main() {
  // Declare appropriate variables
   int number = 320;
  Â
   //Output the prompt & recieve input
   cout << \"Select the apropriate loop typef= for, w =while, d= do-while\" << endl;
  Â
   //Switch to determine & output theappropriate loop type
  Â
  Â
   //Loop that goes from 320 to 325 and outputseach number then \"It's your turn\"
  Â
  Â
  return 0;
}