fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int y = 0;
  5. printf("Digite seu ano de nascimento (quatro digitos)\n");
  6. scanf("%d", &y);
  7. if (y > 9999 || y < 1000) {
  8. printf("Ano inválido");
  9. } else {
  10. int b = y % 100;
  11. int a = y / 100;
  12. int c = a + b;
  13. c %= 5;
  14. switch (c) {
  15. case 0: printf("Tímido\n"); break;
  16. case 1: printf("Sonhador\n"); break;
  17. case 2: printf("Paquerador\n"); break;
  18. case 3: printf("Atraente\n"); break;
  19. case 4: printf("Irresistível\n"); break;
  20. }
  21. }
  22. }
  23.  
  24. //https://pt.stackoverflow.com/q/195129/101
Success #stdin #stdout 0s 4332KB
stdin
10000
1500
stdout
Digite seu ano de nascimento (quatro digitos)
Ano inválido