Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- float index;
- printf("Entre com o indice de poluicao da empresa : \n"); scanf("%f",&index);
- if ((index>=0.05)&&(index<=0.29)) printf("CONDICAO ACEITAVEL\n");
- else if ((index>=0.3)&&(index<0.4)) printf("SUSPENDER ATIVIDADES DE GRUPO 1\n");
- else if ((index>=0.4)&&(index<0.5)) printf("SUSPENDER ATIVIDADES DE GRUPOS 1 E 2\n");
- else printf("SUSPENDER TODAS AS ATIVIDADES\n");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment