문제

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