diff --git a/6-functions/33_tips_calculator.cpp b/6-functions/33_tips_calculator.cpp index 5a4f39b..5ac7ffe 100644 --- a/6-functions/33_tips_calculator.cpp +++ b/6-functions/33_tips_calculator.cpp @@ -17,5 +17,5 @@ int tips_calculator(float total, int number) { int main() { tips_menu(); - std::cout << "$" << tips_calculator(46.59, 2) << "\n"; + std::cout << "$" << tips_calculator(46.59, 0.2) << "\n"; // Percentage is now correct = 20% }