# include <iostream.h>
# include <math.h>
# include <conio.h>
# include <stdio.h>
//funcion para calcular el cubo de un numero real
float cubo(float a)
{
float b;
b=pow(a,3);
return b;
}
int main()
{
gotoxy(19,3);cout<<"INSTITUTO TECNOLOGICO SUPERIOR HUAQUILLAS";
gotoxy(32,4);cout<<"...LENIN ZAPATA....";
gotoxy(17,5);cout<<"FUNCION PARA CALCULAR EL CUBO DE UN NUMERO REAL";
float a;
gotoxy(15,8);cout<<"ingrese un numero:";cin>>a;
gotoxy(15,10);cout<<"el cubo del numero ingresado es:"<<cubo(a);
getch();
}
No hay comentarios:
Publicar un comentario