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) |
|
|
|
|
|