#include<stdio.h>int main(){ char i; do{ printf(" hello the word\n"); scanf("%c", &i); }while(i == 'y'); return 1;}//我想循环但是第二次就跳出了,何解?高手指点一下