Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- int day,month;
- printf("Entre com a sua data de nascimento : (formato dd/mm)\n");
- scanf("%d %d",&day,&month);
- if ((month<3)&&(month>=1))
- {
- printf("Voce nasceu no primeiro semestre!\n");
- }
- else if ((month<6)&&(month>=1))
- {
- printf("Voce nasceu no segundo semestre!\n");
- }
- else if ((month<9)&&(month>=1))
- {
- printf("Voce nasceu no terceiro semestre!\n");
- }
- else if ((month<=12)&&(month>=1))
- {
- printf("Voce nasceu no quarto semestre!\n");
- }
- else printf("DATA INVALIDA!\n");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment