I am calculating percentage for certain amount, my code is:
calc = ((tax / 100) * amount);
where tax=5, amount=1000 and all are long values the result expected is 50 but i am getting a 0
Can any one help me, where I am wrong?
|
|
|
Result of integer division (
|
|||||||||||
|
|
If your dividing the integers then you will get the result Zero instead of Decimal(percentage). (tax / 100)..... is calculated as an integral value; any fractional part is removed. In your case 5/100 = 0.05. It will remove the .05 and the result is 0 Fallow the Link, Same exammple provided there. |
|||
|
|