Я же указываю тип искомого значения как double
public class Solution {
    public static double (???) addTenPercent(int i) {
        double t = i * 1.1;
        return t;
    }

    public static void main(String[] args) {
        System.out.println(addTenPercent(9));
    }
}