Why doesn't this expression work properly? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why doesn't this expression work properly?

When I am giving expression as current,it gives wrong answer.But When giving expression like commented out expression.Then it gives correct result.Why don't current expression work properly? https://code.sololearn.com/cQ75957wPhfS/?ref=app

3rd Mar 2022, 6:33 AM
KAZI FAISAL MAHMUD
KAZI FAISAL MAHMUD - avatar
4 Answers
+ 2
1st one total = salary+(sale*(15/100)) ; (15/100) is done first since 15 and 100 are int, the result of that division is 0 so total will be salary + (sale * 0) 2nd one total = salary+((sale*15)/100); (sale * 15) is done first which will give a double since sale is a double. double/100 will result in a correct division instead of 0.
3rd Mar 2022, 7:46 AM
Bahhaⵣ
Bahhaⵣ - avatar
+ 1
// Convert int to double total = salary+(sale*((double)15/100)); //or total = salary+(sale*0.15); // Good Luck
3rd Mar 2022, 7:37 AM
SoloProg
SoloProg - avatar
+ 1
SoloProg could you tell me the cause?
3rd Mar 2022, 7:42 AM
KAZI FAISAL MAHMUD
KAZI FAISAL MAHMUD - avatar
0
sry, i don't know anything about C, but i think it can't convert int to double, i'm not sure, i dont know :v double sale,salary,total; scanf("%lf %lf",&salary,&sale); total = salary+(sale*0.15); printf("SALARY = %.2lf \n",salary); printf("SALE = %.2lf \n",sale); printf("TOTAL = %.2lf",total); return total;
3rd Mar 2022, 7:23 AM
VuxxLong
VuxxLong - avatar