Site icon T4Tutorials.com

Program to Print sum of number of Series in C Plus Plus (CPP,C++) and C with Flowchart

Program to Print sum of number of Series in C Plus Plus (CPP,C++) and C with Flowchart

In this tutorial, we will learn about the followings;

  1. Flowchart to the Print sum of the number of Series 
  2. Program to the Print sum of the number of Series in C Plus Plus (CPP)
  3. Program to the Print sum of the number of Series in C 

Flowchart to the Print sum of the number of Series 

Program to Print number Series in cpp cplus plus , c with flowchart
Figure: Flowchart to Print sum of the number of Series

Program to the Print sum of the number of Series in C Plus Plus (CPP)

#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
int series;
int sum_of_series=0;

    int numbers=10;
    for(series=1;series<=numbers;series++)
    {
        sum_of_series=  sum_of_series + series;
        cout<<series;
    }
    cout<<"\nSum: "<<sum_of_series;
getch();
}

Output

C Program to Print number Series cpp cplus plus flowchart
Figure: C Program to Print number Series.

YouTube video player

Program to the Print sum of the number of Series in C 

#include<conio.h>
int main()
{
int series;
int sum_of_series=0;

    int numbers=10;
    for(series=1;series<=numbers;series++)
    {
        sum_of_series+=series;
        printf("%d",series);
    }
    printf("\nSum: %d",sum_of_series);
getch();
}

Output

C Program to Print number Series cpp cplus plus flowchart
Figure: C Program to Print sum of the number of Series.

Video Lecture

Exit mobile version