Write a c program to find out the sum of an A.P. series.

By: Prof. Dr. Fazal Rehman Shamil | Last updated: October 21, 2023

Write a c program to find out the sum of an A.P. series.

Flowchart of the program to find out the sum of an A.P. series.

Flowchart of the program to find out the sum of an A.P. series. in C++

C++ program to find out the sum of an A.P. series.

Output

Input the starting number: 2

Input the number of items: 4

Input the common difference: 6

the Sum of the A.P. series are :

2+8+14+20=44

Leave a Reply