“Java 2 dziesiętne” Kod odpowiedzi

Java double 2 dziesiętne

String result = String.format("%.2f", value);
Epic Coder

Jak ustawić 2 miejsca po przecinku w Javie

DecimalFormat df = new DecimalFormat();
df.setMaximumFractionDigits(2);
System.out.println(df.format(decimalNumber));
Poised Polecat

Określ dziesiętne umieszcza Java

double test = 12.15;
DecimalFormat df = new DecimalFormat("#.0");
System.out.println(df.format(test)); // Console: 12.2
// # - prints a digit if provided, nothing otherwise
// . - indicates where to put the decimal seperator
// 0 - prints a digit if provided, 0 otherwise
bae

Java 2 dziesiętne

double res = Math.round(a * 100) / 100;
Greedy Goblin

Odpowiedzi podobne do “Java 2 dziesiętne”

Pytania podobne do “Java 2 dziesiętne”

Więcej pokrewnych odpowiedzi na “Java 2 dziesiętne” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu