Plzzzz help me out with the formula only that am i putting the formula wrong or is there something else.
package com.codegym.task.task01.task0136;
/*
Even to the moon!
*/
public class Solution {
public static void main(String[] args) {
System.out.println(getWeight(888));
}
public static double getWeight(int weightEarth) {
//write your code here
double c = (17 /100) * weightEarth;
return c;
}
}