Stuck on how to perform a simple line formula as below:

double profit=0;
double totalPrice=19.25;
int cost = 12;

profit = totalPrice - 2.15(totalPrice * 15 %) - (cost);

How can I write the above equation in code I never have done it before it is giving error on 2.15 and 15%. How do I represent those numbers?

Thank you

有帮助吗?

解决方案

profit = totalPrice - 2.15 * (totalPrice * 0.15) - (cost);

15% is expressed as 0.15.

其他提示

profit = totalPrice - (2.15 * (totalPrice * .15)) - cost;
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top