2012年9月10日
摘要: #include<iostream>bool Replace(char *ori);void main(){ char * str= "i am happy now"; Replace(str);}bool Replace( char *ori){ if(NULL == ori) return false; int spacenum = 0; int len = strlen(ori); while('\0' != *ori) { if(' ' == *ori){ ++ spacenum; } ++ ori; } char *re 阅读全文
posted @ 2012-09-10 20:19 cs_jin_scor 阅读(215) 评论(0) 推荐(0) 编辑