Código
fuente (Solución 1) |
|
#include
<stdio.h>
int
main()
{
float
nota;
printf( "\n
Introduzca nota (real): " );
scanf( "%f",
¬a );
if
( nota >= 5
&& nota <= 10 )
printf( "\n
APTO" );
else
/*
Inicio del anidamiento */
if
( nota >= 0
&& nota < 5 )
printf( "\n
NO APTO" );
else
printf( "\n
ERROR: Nota incorrecta." );
/*
Fin
del anidamiento */
return
0;
} |
|
|
Código
fuente (Solución 2) |
|
#include
<stdio.h>
int
main()
{
float
nota;
printf( "\n
Introduzca nota (real): " );
scanf( "%f",
¬a );
if
( nota < 0
|| nota > 10
)
printf( "\n
ERROR: Nota incorrecta." );
else
/*
Inicio del anidamiento */
if
( nota < 5
)
printf( "\n
NO APTO" );
else
printf( "\n
APTO" );
/*
Fin
del anidamiento */
return
0;
} |
|
|
Código
fuente (Solución 3) |
|
#include
<stdio.h>
int
main()
{
float
nota;
printf( "\n
Introduzca nota (real): " );
scanf( "%f",
¬a );
if
( nota >= 0
&& nota <= 10 )
/*
Inicio del anidamiento */
if
( nota >= 5
)
printf( "\n
APTO" );
else
printf( "\n
NO APTO" );
/*
Fin
del anidamiento */
else
printf( "\n
ERROR: Nota incorrecta." );
return
0;
} |
|
|
Ficheros
con extensión (.c) |
|
|
|
|
|