這個是可以用來替代 cin.peek() 的 C function (我自己寫的),解題專用。
#include<stdio.h> char cpeek( FILE* fp = stdin ) { char ca = getc(fp); ungetc(ca,fp); return ca; }