利用递归反向输出字符串
string end with '#'
void reversePrint() { char c; scanf("%c", &c); if(c != '#') reversePrint(); if(c != '#') printf("%c", c); }
string end with '#'
void reversePrint() { char c; scanf("%c", &c); if(c != '#') reversePrint(); if(c != '#') printf("%c", c); }