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: Display the cube of the number upto given an integer

C++ For Loop: Exercise-18 with Solution

Write a program in C++ to display the cube of the number upto given an integer.

Pictorial Presentation:

C++ Exercises: Display the cube of the number upto given an integer

Sample Solution:-

C++ Code :

#include <iostream>
using namespace std;

int main()
{
    int i, ctr, cub;

    cout << "\n\n Display the cube of the numbers upto a given integer:\n";
    cout << "----------------------------------------------------------\n";
    cout << "Input the number of terms : ";
    cin >> ctr;
    for (i = 1; i <= ctr; i++) 
    {
        cub = i * i * i;
        cout << "Number is : " << i << " and the cube of " << i << " is: " << cub << endl;
    }
}

Sample Output:

 Display the cube of the numbers upto a given integer:                 
----------------------------------------------------------             
Input the number of terms : 5                                          
Number is : 1 and the cube of 1 is: 1                                  
Number is : 2 and the cube of 2 is: 8                                  
Number is : 3 and the cube of 3 is: 27                                 
Number is : 4 and the cube of 4 is: 64                                 
Number is : 5 and the cube of 5 is: 125 

Flowchart:

Flowchart: Display the cube of the number upto given an integer

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to print a square pattern with # character.
Next: Write a program in C++ to display the multiplication table vertically from 1 to n.

What is the difficulty level of this exercise?