fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. printf("Digite seu estado civil: ");
  5. char est_civil = getchar();
  6. if (est_civil == 'C' || est_civil == 'c') {
  7. printf("Casado");
  8. } else if (est_civil == 'S' || est_civil == 's') {
  9. printf("Solteiro");
  10. }
  11. }
  12.  
  13. //http://pt.stackoverflow.com/q/197550/101
Success #stdin #stdout 0s 9432KB
stdin
s
stdout
Digite seu estado civil: Solteiro