The program in C++ to Find Sum of first 10 natural numbers is given below:
#include <iostream>
using namespace std;
int main() {
int sum = 0;
cout<<"Hello Codeauri Family\n";
// cin>>
// Compute the sum of the first 10 natural numbers
for (int i = 1; i <= 10; i++) {
sum += i;
}
// Output the sum
cout << "The sum of the first 10 natural numbers is: " << sum << endl;
return 0;
}
Output:
Hello Codeauri Family
The sum of the first 10 natural numbers is: 55
Pro-Tips💡
This program uses a for loop to iterate through the values of i from 1 to 10,
and add each value of i to a variable sum.
Since the first 10 natural numbers are the numbers from 1 to 10, the program will add them up and store the sum in a variable named sum.
Finally, the program outputs the sum to the console.
Learn C-Sharp ↗
C-sharp covers every topic to learn about C-Sharp thoroughly.
Learn C Programming ↗
C-Programming covers every topic to learn about C-Sharp thoroughly.
Learn C++ Programming↗
C++ covers every topic to learn about C-Sharp thoroughly.