题解列表

筛选

while循环解密

摘要:解题思路:利用while循环不断查取缓冲器的字符并打印注意事项:参考代码:#include <stdio.h>int main(void){ char ch; scanf("%c" ,&ch);   ……