宋凯鹏的个人网站
int i=0,j=0; while(1) { ch=getchar(); if(ch=='\n') break; if(ch==' ') { j++; i=0; continue; } word[j][i]=ch; i++; }
提交评论