Is 7.95023E-4 close to 7?
in
Programming Questions
•
1 years ago
I want to get the number of how many % died during work.
I know the ammount of population and the ammount of people that died.
Is this math correct?
float oneP = (float)s.population/100;
float VicPerc = s.fatalityCount/oneP;
println(VicPerc);
If so, is 7.95023E-4 then 0.0007.9502?
I know the ammount of population and the ammount of people that died.
Is this math correct?
float oneP = (float)s.population/100;
float VicPerc = s.fatalityCount/oneP;
println(VicPerc);
If so, is 7.95023E-4 then 0.0007.9502?
1