输入一行文字,找出其中大写字母、小写字母、空格、数字、及其他字符各有多少
2023-06-30
解: #include
main()
int upper=0.lower=0,digit=0,space=0,other=0,i=0;
char *p,s[20];
printf(“Input string:”);
while ((s[i]=getcher())!=’ ’) i++;
p=&s[0];
while(*p!=’ ’)
if((‘A’
输入一行文字,找出其中大写字母、小写字母、空格、数字、及其他字符各有多少2023-06-30 解: #include main() int upper=0.lower=0,digit=0,space=0,other=0,i=0; char *p,s[20]; printf(“Input string:”); while ((s[i]=getcher())!=’ ’) i++; p=&s[0]; while(*p!=’ ’) if((‘A’ 相关内容: |