-
Notifications
You must be signed in to change notification settings - Fork 0
/
guia2-ej8.c~
51 lines (45 loc) · 997 Bytes
/
guia2-ej8.c~
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <stdio.h>
#define TOTAL_CREDITS 240
#define YEAR_MSG "Ud. se encuentra en el"
int main(void){
int credits;
int yearly_credits;
int j;
printf("Ingrese su número de créditos \n");
j = scanf("%d", &credits);
if(!j){
fprintf(stderr, "ERROR: Entrada inválida.\n");
return 1;
}
if(credits < 0){
fprintf(stderr, "ERROR:Número negativo.\n");
return 1;
}
/*Uso la division entera porque no hay medios créditos o cosas
así */
yearly_credits = TOTAL_CREDITS / 5;
if(credits > TOTAL_CREDITS)
{
printf("Ud. ya se encuentra en condiciones de recibirse. Vuelva a su tésis.\n");
return 0;
}
if (credits < yearly_credits)
{
printf("%s %s", YEAR_MSG, "primer año.\n");
}else
{
if(credits < yearly_credits * 2)
{
printf("%s %s", YEAR_MSG, "segundo año.\n");
}else{
if(credits < yearly_credits * 3)
{
printf("%s %s", YEAR_MSG, "tercer año.\n");
}else
{
printf("%s %s", YEAR_MSG, "cuarto año.\n");
}
}
}
return 0;
}