[Solved] Novice C++ project using loops, if else and switch [closed]
This’ll work. Please cross-check output for different inputs for coz haven’t had the time to do so. #include<iostream> using namespace std; int main (){ int units; double priceA,priceB,priceC; char package, goAgain; do { cout << “Enter the Package chosen. Enter ‘A’ or ‘a’ for package A.\n”; cout << “Enter ‘b’ or ‘B’ for package B.\n”; … Read more