Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Find the first 10 natural numbers

C++ For Loop: Exercise-1 with Solution

Write a program in C++ to find the first 10 natural numbers.

Pictorial Presentation:

C++ Exercises: Find the first 10 natural numbers

Sample Solution :-

C++ Code :

#include <iostream>
using namespace std;
int main()
{
    int i;
    cout << "\n\n Find the first 10 natural numbers:\n";
    cout << "---------------------------------------\n";
    cout << " The natural numbers are: \n";
    for (i = 1; i <= 10; i++) 
    {
        cout << i << " ";
    }
    cout << endl;
}

Sample Output:

 Find the first 10 natural numbers:                                    
---------------------------------------                                
 The natural numbers are:                                              
1 2 3 4 5 6 7 8 9 10  

Flowchart:

Flowchart: Find the first 10 natural numbers

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: C++ For Loop Exercises Home
Next: Write a program in C++ to find the sum of first 10 natural numbers.

What is the difficulty level of this exercise?