wokół wartości 2 dziesiętnych w Javie
class round{
public static void main(String args[]){
double a = 123.13698;
double roundOff = Math.round(a*100)/100; //put attention to the parenthesis.
System.out.println(roundOff);
}
}
Luis Marquez