#include <iostream.h>
#include <conio.h>
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);
}
This program takes in an integer a as a screen input from the user.
It then determines the integer's cube and outputs it using the 'cout' command.
It then determines the integer's cube and outputs it using the 'cout' command.
Tidak ada komentar:
Posting Komentar