我应该如何处理编写确定订阅包节省的代码的逻辑

问题描述 投票:0回答:2

我无法计算手机计划为图书问题节省的费用。我想请注意,我已经完成了第一部分的代码。这是我遇到麻烦的第二部分。好的,这是书中的问题(上下文):

第1部分

移动电话服务提供商为其客户提供三种不同的订阅套餐:

套餐A:每月39.99美元,提供450分钟。额外的分钟是每分钟0.45美元。

套餐B:每月59.99美元,提供900分钟。额外的分钟是每分钟0.40美元。

套餐C:每月69.99无限制分钟。

编写一个计算客户月度账单的程序。它应该询问客户购买了哪个包装以及使用了多少分钟。然后它应显示到期总金额。

第2部分

修改第1部分中的程序,以便它还显示Package A客户在购买包B或C时将节省多少钱,以及如果他们购买Package C,Package B客户将节省多少钱。如果没有保存,则不消息应该打印出来。

在第二部分,我如何计算计划的节省?我似乎无法正确实施它们。我最初的想法是从每月总账单中减去总额外分钟的超额成本,但我无法按照我想要的那样工作。这是我的代码:

#include <iostream>
#include <iomanip>

using namespace std;

int main()

{

    double minUsed, minLeft, extraMinCost, monthTotal, planSaveB, planSaveC;
    char choice;
    const double planCostA = 39.99, planCostB = 59.99, planCostC = 69.99, monthlyMinA = 450, monthlyMinB = 900;;


        cout<<"Enter your monthly package plan: Ex. A, B or C"<<endl<<endl;
        cin>>choice;
        cout<<endl;

        cout<<"Enter the amount of minutes you used: "<<endl;
        cin>>minUsed;
        cout<<endl;

        if (choice == 'a' || choice == 'A')
        {

            minLeft=monthlyMinA-minUsed;
            if (minLeft < 0)

            {
                extraMinCost=minLeft*(-0.45);
                monthTotal=planCostA+extraMinCost;
                planSaveB = (planCostB-extraMinCost)-(-planCostB);
                planSaveC = planCostC - (planCostC-extraMinCost);
                cout << "Your total bill amount is: " << setprecision(2) << fixed << "$" << monthTotal << endl<<endl;
                cout << "You could save " << setprecision(2) << fixed << "$" << planSaveB << " if you switch to plan B or ";
                cout << "save " << setprecision(2) << fixed << "$" << planSaveC << " If you switch to plan C." << endl << endl;;
            }
            else if (minLeft >= 0)
            {
                monthTotal = planCostA;

                cout << "Your total bill amount is: " << setprecision(2) << fixed << "$" << monthTotal << endl;
            }

        }

        /*else if (choice == 'b'|| choice == 'B')
            {

                minLeft=monthlyMinB-minUsed;

                if (minLeft < 0)

                {
                    extraMinCost=minLeft*(-0.40);
                    monthTotal=planCostB+extraMinCost;
                }
                else
                    monthTotal=planCostB;

            cout<<"Your total bill amount is: "<<setprecision(2)<<fixed<<"$"<<monthTotal<<endl;

}
        else if (choice == 'c' || choice == 'C')
            {


                monthTotal=planCostC;

                cout<<"Your total bill amount is: "<<setprecision(2)<<fixed<<"$"<<monthTotal<<endl;
                cout<<"Current plan has unlimited minutes!"<<endl;


            }*/



        cout<<choice;

    return 0;
}

相关部分是我代码的一部分选择。当我能把那个包装成一个部分时,我会修改其余部分。

c++ visual-studio-2013
2个回答
1
投票

我想你可能想写一个像这样的函数

float getPlanACost( int minutes ) { ... }

如果他们有计划A并使用'分钟'分钟,则返回客户开帐单的金额。然后为计划B和计划C编写类似的功能。使用这些功能打印您的每月帐单,并根据要求计算可用的节省。

软件开发的很大一部分是将一个大问题分解为更小的问题。


1
投票

您可以在switch语句中使用if语句,这将使您的代码更容易理解和更短。

例:

switch (package)
    {
    case 'A':
    {
        if (time < 450)
            total = packageA;
        else
            total = ((time - 450)*rate_A) + packageA;
        break;
© www.soinside.com 2019 - 2024. All rights reserved.