I have a Sting value contains in Exponential
class round{
public static void main(String args[]){
String a ="2.4545776339999877E7";
double roundOff = Math.round(a);
System.out.println(roundOff);
}
}
So i want to round off upto 5 decimal vaue. How to do it please?