编译时我的代码返回 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 >> cust >> price >> day;
打开/打开编译器警告。
【参考方案1】:
你有:
cin >> cust; price; day; // reads 'cust' from user input
// evaluates price, day as expressions
// which do nothing
你的意思是:
cin >> cust >> price >> day;
【讨论】:
以上是关于编译时我的代码返回 0 为啥? [关闭]的主要内容,如果未能解决你的问题,请参考以下文章