Here is an example of a Program to enter an integer and output the cube of that integer
#include
#include
int cube(int x); //The prototype.
void main()
{
clrscr();
int a;
cout << "Enter an integer : ";
cin>>a;
cout << "The cube of " << a << " is : " << cube(a) << endl; //Call the function cube(a).
getch();
}
//Defining the function.
int cube(int x)
{
int y;
y=x*x*x;
return(y);
}
Here a function called the cube of a number is being created and that function defined and is stored in a variable called int y. Where, y = x*x*x which x3.
When we run the function by entering a number the output, i.e., the cube of that particular number is generated.
For any C++ Assignment help, Homework help and Online Tutoring you can visit our website at http://www.helpwithassignment.com/programing-assignment-help. Our C++ experts will guide you through your needs at a very minimal price.
No comments:
Post a Comment