Write a program to calculate and print the sum of the following series: Sum(x) = x/2 + x/5 + x/8 + … + x/100.

Program to calculate and print the sum of the following series: Sum(x) = x/2 + x/5 + x/8 + … + x/100 in Java.

package com.hubberspot.java.series.problems;

import java.util.Scanner;

public class Series {

    public static void main(String[] args) {
        
        Scanner scanner = new Scanner(System.in);
        
        System.out.println("Enter the value of x : ");
        
        double x = scanner.nextDouble();        
        double sumOfSeries = 0;
        double numerator = x;
        double denominator;
        double term;

        for(int i = 2; i <= 100; i = i + 3) { 
            
            denominator = i;
            term = numerator / denominator;
            sumOfSeries = sumOfSeries + term;
            
        }
        
        System.out.println("Sum of the series : " + sumOfSeries);
        
    }
}


Output of the program :