I need to count weight without rounding. Which is the best type for count weight float , double or decimal.
float weight=0.333f;
double weight=0.333;
decimal weight=0.333m;
My weight will be from 0.000 till 999.000;
I need to count weight without rounding. Which is the best type for count weight float , double or decimal.
float weight=0.333f;
double weight=0.333;
decimal weight=0.333m;
My weight will be from 0.000 till 999.000;