编译时我的代码返回 0 为啥? [关闭]

Posted

技术标签:

【中文标题】编译时我的代码返回 0 为啥? [关闭]【英文标题】:My code is returning 0 when I compile why? [closed]编译时我的代码返回 0 为什么? [关闭] 【发布时间】:2015-04-21 01:14:36 【问题描述】:
int onedudetotal;
int total;
int cust;
int price;
int day;

double calculate(int avgcust, int avgprice, int days)

    onedudetotal = (avgprice * days) * avgcust;
    return onedudetotal;
;

int main()
   
    cout << "Please enter days, average customers and days" << endl;
    cin >> cust; price; day;
    cout << calculate(cust, day, price) << endl;

在编译期间,我的代码在输入 day cust 和 price 时返回 0。输入 5、120 和 50 时应该返回 30000。可能是什么问题?

【问题讨论】:

cin &gt;&gt; cust &gt;&gt; price &gt;&gt; day; 打开/打开编译器警告。 【参考方案1】:

你有:

cin >> cust; price; day;     // reads 'cust' from user input
                             // evaluates price, day as expressions
                             // which do nothing

你的意思是:

cin >> cust >> price >> day;

【讨论】:

以上是关于编译时我的代码返回 0 为啥? [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

为啥有换行符时我的 PL/SQL 过程不能编译?

为啥单击按钮时我的选项卡没有变化?

为啥当我按下返回按钮时我的程序崩溃

为啥在编译我的代码C(linux)时出现分段错误(核心转储)[关闭]

为啥当客户端关闭连接时我的简单 C 服务器退出?

为啥我使用 go live 时我的代码不起作用?