Java program to calculate the sum of series
Problem Statement: Write a Java program to calculate the sum of the following series: S = 3 – 6 + 9 – 12 + 15 – 18 …. – 30 Flowchart: Raptor flow chart for the Java program is shown below: Java Program: package series; /***************************************************** * Java Program: * To calculate the series sum […]