I am writing a program for class but stuck. I need my program to pick adult, child, student or senior, if I enter any of them.
#include<iostream>
#include<iomanip>
#include<string.h>
#include<fstream>
using namespace std;
int main()
{
int choice;
int months;
int Adult, Child, Student, Senior;
cout<<"Enter the number of months that you want to sign up for?";
cin>> months;
cout<<"Enter membership type Adult, Child, Student, or Senior";
cin>>choice;
switch (choice)
{
case 'Adult':