write a program in c++ to print the sum of two numbers using variables #include<iostream.h> #include<conio.h> void main() { clrscr(); int a,b, sum; cout<<"Please enter any two numbers"<<<<e…
My First C++ Program #include<iostream.h> void main() { cout<< "Welcome!"; cout<< "This is my first Program using C++"; } =========================================== Output: Welcome! This is…
#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 << "--------------------------------------…
Write a program to display the terms and sum of the following series: 1+4+7+10+13+16+ 19 +22 #include <iostream> using namespace std; int main() { cout << "1 + 4 + 7 + 10 + 13 + 16 + 19 + 22 = " << 1…
Our Social Link