//6. Programa que calcule el volumen de un cubo , a partir de datos dados por el usuario #include<stdio.h> #include<stdlib.h> #include<math.h> int main(){ float arista,resp; printf("ingrese arista\n"); scanf("%f",&arista); resp=pow(arista,3); printf("el volumen del cubo es: %.2f ",resp); return 0; }