// Calculate base pay #include using namespace std; int main() { int payType; //0 weekly; 1 2x per month; 2 monthly double salary; //annual salary cout<<"Enter pay type: "; cin>>payType; cout<<"Enter the annual salary: $"; //we print $ so the user doesn't cin>>salary; switch (payType) { case 0: cout<<"Base pay = "<