2019-12-02 12:41:15 -05:00
|
|
|
public class FuelFinder{
|
|
|
|
public static void main(string[] vala){
|
2019-12-02 12:43:29 -05:00
|
|
|
int[] tVals ={12,14,1969,100756};
|
2019-12-02 12:41:15 -05:00
|
|
|
for (int a:tVals){
|
|
|
|
System.out.println("FuelNeeded(a)");
|
2019-12-02 12:43:29 -05:00
|
|
|
}
|
2019-12-02 12:41:15 -05:00
|
|
|
}
|
|
|
|
public static int FuelNeeded(int inp){
|
|
|
|
return ((inp/3)*2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|