Помогите как вывести именно чтобы 150.96 вывело.
package com.javarush.task.task01.task0136;
/*
Да хоть на Луну!
*/
public class Solution {
public static void main(String[] args) {
System.out.println(getWeight(888));
}
public static double getWeight(int earthWeight) {
int a = earthWeight;
int b = 17;
int c = 100;
double getWeight = a * b / c;
return getWeight;
}
}