Here is the code I'm using in the example:
PRINT @set1
PRINT @set2
SET @weight= @set1 / @set2;
PRINT @weight
Here is the result:
47
638
0
I would like to know why it's returning 0 instead of 0,073667712
|
Here is the code I'm using in the example:
Here is the result:
I would like to know why it's returning |
|||||
|
|
Either declare set1 and set2 as floats instead of integers or cast them to floats as part of the calculation:
|
|||
|
|
|
Because it's an integer. You need to declare them as floating point numbers or decimals, or cast to such in the calculation. |
|||
|
|
|
When you use integers in a division, you will get integer division. When you use doubles/floats, you will get floating point division (and the answer you want to get). So you can
Do not just cast the result of the integer division to double: the division was already performed as integer division, so the numbers behind the decimal are already lost. |
|||
|
|
|
if you declare it as float or any decimal format it will display
only E.g :
Output : 0 If you want the output as
E.g
|
|||||
|
|
Simply mutiply the bottom of the division by 1.0 (or as many decimal places as you want)
|
|||
|
|