C语言 输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数。

日期:2007-01-09 23:28:18 人气:1

C语言 输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数。

#include #include typedef int KeyType; #define MAXSIZE 26 typedef struct{ KeyType key; KeyType keynumber; }RecType; typedef struct{ RecType r[MAXSIZE+1]; int length; }SqList; void Bubblesort(SqList &q) //
    A+
热门评论