13.c++ program to calculate sum of natural numbers
// C++ program to calculate sum of natural numbers
INPUT:
#include<iostream>
using namespace std;
int main()
{
int x,y=0,i;
cout<<"Enter a positive integer : ";
cin>>x;
for(i=1;i<=x;i++)
{
y=y+i;
}
cout<<"\n Sum = "<<y<<endl;
return 0;
}
OUTPUT:
Comments
Post a Comment