Answers for "float with decimals java"

0

java double to float

double d = getInfoValueNumeric();
float f = (float)d;
Posted by: Guest on September-06-2020
2

java 2 decimals

double res = Math.round(a * 100) / 100;
Posted by: Guest on December-17-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language