zoj 3323 Somali Pirates

昨天写的吧 。

 

某人鄙视过我不会用ctype.h中的函数。。。我这道题用啦 ~~哈哈~~~水题,不过细节要处理好呢~#include <stdio.h> #include <stdlib.h> #include <ctype.h> int main(void) { int ncases; char ch; scanf("%d",&ncases); getchar(); while(ncases--) { ch = getchar(); while(ch != '/n') { if( isalpha(ch) ) putchar(ch); ch = getchar(); } printf("/n"); } system("pause"); return 0; }

你可能感兴趣的:(zoj 3323 Somali Pirates)