1
How can I make it appear instead of 1000 appear 1,0k and so on?
1000 - 1,0k
2000 - 2,0k
10000 - 10,0k
100000 - 100,0k
and etc...
@Override
public double getValor(String arg0) {
Pessoa pessoa = Main.getPessoa();
double valor = base.configvalor.getConfig().getConfigurationSection(pessoa.getNome()).getDouble("Valor");
if (base.configvalor.getConfig().getConfigurationSection(pessoa.getNome()).getDouble("Valor") >= 1000) {
double resultado = Math.ceil(valor/1000.0);
return (resultado);
}else {
return valor;
}
}
Related question (not duplicate): https://answall.com/q/51047/132
– Victor Stafusa