/*__________________________________________________ Libro: EMPEZAR DE CERO A PROGRAMAR EN LENGUAJE C Ejemplo 12.2: Calificación según nota (Versión 1) Web del Autor: http://www.carlospes.com __________________________________________________*/ #include int main() { float nota; printf( "\n Introduzca nota (real): " ); scanf( "%f", ¬a ); if ( nota >= 5 ) printf( "\n APROBADO" ); else printf( "\n SUSPENDIDO" ); return 0; }