[Solved] How would I allow user to use program again? [closed]
[ad_1] If you want an operation to be preform *untill something you should use a loop #include <iostream> using namespace std; int main() { double bill, ten, fifteen, twenty, end, end2, end3; bool done = false; while(!done){ cout << “Enter your bill’s total: “; cin >> bill; ten = 0.1; fifteen = 0.15; twenty = … Read more