EMPEZAR DE CERO A PROGRAMAR EN LENGUAJE C
C/C++/C# HTML Java JavaScript Linux PHP Python Swift
 Recursos > Código fuente > Capítulo 13 > Ejercicio Propuesto 13.1
Área de un cubo (Bucle mientras)
 Solución
#include <math.h>
#include <stdio.h>

int main()
{
   float arista;

   printf( "\n   Introduzca arista: " );
   scanf( "%f", &arista );

   /* Filtramos la arista */

   while ( arista <= 0 )
   {
      printf( "\n   ERROR: La arista debe ser mayor que cero." );
      printf( "\n\n   Introduzca arista: " );
      scanf( "%f", &arista );
   }

   printf( "\n   El area de un cubo de arista %f es: %f",
           arista, 6 * pow( arista, 2 ) );

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