摘要: 1 void StringCount(char s[]) 2 { 3 int letter, blank, digit, other; 4 5 letter = 0; 6 blank = 0; 7 digit = 0; 8 other = 0; 9 10 int i = 0; 11 while (s 阅读全文
posted @ 2019-12-03 09:23 jason2018 阅读(2700) 评论(0) 推荐(0)