entry.c 561 B

1234567891011121314151617181920
  1. /* entry.c -- entry condition loop */
  2. #include <stdio.h>
  3. int main(void)
  4. {
  5. const int secret_code = 13;
  6. int code_entered;
  7. printf("To enter the triskaidekaphobia therapy club,\n");
  8. printf("please enter the secret code number: ");
  9. scanf("%d", &code_entered);
  10. while (code_entered != secret_code)
  11. {
  12. printf("To enter the triskaidekaphobia therapy club,\n");
  13. printf("please enter the secret code number: ");
  14. scanf("%d", &code_entered);
  15. }
  16. printf("Congratulations! You are cured!\n");
  17. return 0;
  18. }