enum SI {
k("kilo"),
M("mega"),
G("giga"),
T("tera");
String s;
static double y = log(1_000);
SI(String s) { this.s = s; }
static SI get(double x) {
int y = (int) (log(x) / SI.y);
return values()[y - 1];
}
}
SI si = SI.get(a);
a = a / pow(1_000, si.ordinal() + 1);
String x = si.name();
This is intended to work where a > 999.