In Java:
public class Exercise06_13 {
public static void main(String[] args) {
System.out.println(Series(Just put whatever number you want here, and it will print out the number in the series.));
}
static float Series(float i){
return (i / (i + 1));
}
}
I hope this helps!