Write a program in C++ to display n terms of natural number and their sum

  • برمجة سي بلس بلس
  • برمجة

Write a program in C++ to display n terms of natural number and their sum

Sample Output:

 Display n terms of natural number and their sum:                      
---------------------------------------                                
 Input a number of terms: 7                                            
 The natural numbers upto 7th terms are:                               
1 2 3 4 5 6 7                                                          
 The sum of the natural numbers is: 28

الأجوبة

#include <iostream>
using namespace std;
int main()
{
    int n,i,sum=0;
    cout << "\n\n Display n terms of natural number and their sum:\n";
    cout << "---------------------------------------\n";
	cout << " Input a number of terms: ";
	cin>> n;		
    cout << " The natural numbers upto "<<n<<"th terms are: \n";
    for (i = 1; i <= n; i++) 
    {
        cout << i << " ";
		sum=sum+i;
    }
     cout << "\n The sum of the natural numbers is: "<<sum << endl;
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...