Write a  C++ Program to Calculate Sum of Natural Numbers

C++ Program to Calculate Sum of Natural Numbers

Welcome to the World of Online Learning:

Hello Friends “This blog helps you to learn C++ programming concepts. You can learn C++ language at your own speed and time. One can learn concepts of C++ language by practicing various programs given on various pages of this blog. Enjoy the power of Self-learning using the Internet.”

C++ Program to Calculate Sum of Natural Numbers
C++ Program to Calculate Sum of Natural Numbers

Write a  C++ Program to Calculate Sum of Natural Numbers

PROGRAM: C++ Program to Calculate Sum of Natural Numbers

/* C++ Program to Calculate Sum of Natural Numbers */

#include <iostream>
using namespace std;

int main() {
int n, sum = 0;

cout << “Enter a positive integer: “;
cin >> n;

for (int i = 1; i <= n; ++i) {
sum += i;
}

cout << “Sum = ” << sum;
return 0;
}

Leave a Reply

Your email address will not be published. Required fields are marked *