C语言循环实例 C语言do while循环实例 C语言循环嵌套实例 C语言循环实例 /* entry.c -- entry condition loop */ #include <stdio.h> int main(void) { const int secret_code = 13; int code_entered; printf("To enter the triskaidekaphobia therapy club,\n"); printf("please enter the secret code number: "); scanf("%d", &code_entered); while (code_entered != secret_code) { printf("To enter the triskaidekaphobia therapy club,\n"); printf("please enter the secret code number: "); scanf("%d", &code_entered); } printf("Congratulations! You are cured!\n"); return 0; } C语言do while循环实例 C语言循环嵌套实例