public class Exercise {
static int getAdditionalOdd(int a) {
if (a <= 1)
return 1;
int x = getAdditionalOdd(a -2);
return a +x ;
}
...