编程实现在main函数中输入一行文字,找出其中大写字母、小写字母、空格、数字及其他字符各有多少。 #include main() {int upper=0,lower=0,digit=0,space=0,other=0,i=0; char *p,s[80]; printf("Input string: "); while(___) i++; p=__...
编程题:输入一行文字,分别统计出其中英文大写字母、小写字母、空格、数字和其它字符的个数.(用指针和 (用指针和数组实现)
“P291:8”输入一行文字,找出其中字母(包括大写、小写一起)、空格、数字以及其他字符的个数。(用指针) #include<stdio.h> int main() {int *a,*b,*c,*d,space=0,zm=0,num=0,other=0,i; char s[20]; a=&space,b=&zm,c=&num,d=&other; gets(s); for(i=0;i<20;i++) {if(s[i]>...
编程实现在main函数中输入一行文字,找出其中大写字母、小写字母、空格、数字及其他字符各有多少。 #include main() {int upper=0,lower=0,digit=0,space=0,other=0,i=0; char *p,s[80]; printf("Input string: "); while(___) i++; p=__...
1编程题:输入一行文字,分别统计出其中英文大写字母、小写字母、空格、数字和其它字符的个数.(用指针和(用指针和数组实现) 2 编程题:输入一行文字,分别统计出其中英文大写字母、小写字母、空格、数字和其它字符的个数.(用指针和 (用指针和数组实现) 3输入一行文字,分别统计其中英文大写字母,小写字母,空格,数字,...
编程题:输入一行文字,分别统计出其中英文大写字母、小写字母、空格、数字和其它字符的个数.(用指针和(用指针和数组实现) 扫码下载作业帮搜索答疑一搜即得 答案解析 查看更多优质解析 解答一 举报 #include<stdio.h>main(){int i=0;int m=0;int n=0;char c;clrscr();while((c=getchar())!='\n'){if ...
编程题:输入一行文字,分别统计出其中英文大写字母、小写字母、空格、数字和其它字符的个数.(用指针和(用指针和数组实现) 扫码下载作业帮搜索答疑一搜即得 答案解析 查看更多优质解析 解答一 举报 #include<stdio.h>main(){int i=0;int m=0;int n=0;char c;clrscr();while((c=getchar())!='\n'){if ...
int main(){ char c;int digit = 0, upper = 0, lower = 0, space = 0, other = 0;while (scanf("%c", &c) == 1 && c != '\n'){ if (isdigit(c))++digit;else if (isupper(c))++upper;else if (islower(c))++lower;else if (isspace(c))++space;else ++other;} ...
int main(){ char values[100];int i;gets(values);fun(values);return 0;} void fun(char *p){ int i;int daxie=0;int xiaoxie=0;int kongge=0;int shuzi=0;int other=0;//英文大写字母、小写字母、空格、数字和其它字符 for(i=0;i<strlen(p);i++){ if(p[i]>='A'&&p[i...