语法错误[1]:printf("其中大写字母%d个,小写字母%d个,数字%d个,其他字符%d个\n",dx,xx,shuzi,qita);dx后面的逗号不是英文的。算法也有错误:你判断的时候if(all[i]>'a'&&all[i]'A'&&all[i]应该把>都改成>=,#include#defineN100main(){charall[N];inti,xx=0,shuzi=0,qita=0,dx=0;printf("请...
C语言编程 从键盘输入一个字符串,分别统计其中大写字母、小写字母及其其他字符的个数,并输出。 #include "stdio.h"void main(){ char temp; temp=get 从键盘输入一个字符串,分别统计其中每个数字、空格、字母及其他字符出现的次数。 #include <stdio.h> void count(char *s, int *digit, 从键盘输入一串字...
include <stdio.h>#include <conio.h>#define LEN 50int main (void) {//char str[LEN];char str[LEN] = "5DQj$6X MDaCdj @9IFazB";char *p = str;int capCnt, lowCnt, numCnt, othCnt; /*分类计数*/capCnt = lowCnt = numCnt = othCnt = 0;//puts ("输入字符串:");//...