fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main() {
  5. char sigla[3];
  6. printf("Entre com a sigla do seu estado:");
  7. scanf("%s", sigla);
  8. if (strcmp(sigla, "RJ") == 0 || strcmp(sigla, "rj") == 0) printf ("\nCarioca!");
  9. else if (strcmp(sigla, "SP") == 0 || strcmp(sigla, "sp") == 0) printf ("\nPaulista");
  10. else if (strcmp(sigla, "MG") == 0 || strcmp(sigla, "mg") == 0) printf ("\nMineiro!");
  11. else printf ("\nOutros Estados!");
  12. }
  13.  
  14. //https://pt.stackoverflow.com/q/317230/101
Success #stdin #stdout 0s 4384KB
stdin
sp
stdout
Entre com a sigla do seu estado:
Paulista