EMPEZAR DE CERO A PROGRAMAR EN LENGUAJE C
C/C++/C# HTML Java JavaScript Linux PHP Python Swift
 Recursos > Código fuente > Capítulo 11 > Ejercicio Resuelto 11.15
Volumen de un cubo
 Solución 1
#include <math.h>
#include <stdio.h>

int main()
{
   float arista, volumen;

   printf( "\n   Introduzca arista: " );
   scanf( "%f", &arista );
   volumen = pow( arista, 3 );
   printf( "\n   El volumen del cubo es: %f", volumen );

   return 0;
}
 Solución 2
#include <math.h>
#include <stdio.h>

int main()
{
   float arista;

   printf( "\n   Introduzca arista: " );
   scanf( "%f", &arista );
   printf( "\n   El volumen del cubo es: %f", pow( arista, 3 ) );

   return 0;
}
 Ficheros con extensión (.c)