输入一行文字 找出其中的大写字母、小写字母、空格、数字以及其他字符各有多少。用指针处理 答案 #include<stdio.h> void main() { char q[100]; char *p; int a=0,b=0,c=0,d=0,e=0,f=0,i; p=q; for(i=0;i<100;i++) q[i]=0; printf("请输入字符串\n"); scanf("%[^\n]", q)...
1. 声明并初始化用于统计各类字符个数的变量,分别为`uppercaseCount`(大写字母个数)、`lowercaseCount`(小写字母个数)、`spaceCount`(空格个数)、`digitCount`(数字个数)和`otherCount`(其他字符个数)。 2. 从键盘输入一行文字,存储到一个字符数组中,假设字符数组名为`inputText`。
else if(___s2++; else if(___) s3++; else if(___) s4++; else s5++; p++; } printf(“大写字母:%d小写字母:%d数字:%d空格:%d其它:%d\n”,s1,s2,s3,s4,s5); }相关知识点: 试题来源: 解析 _ ① ② ) ③ ④ 反馈 收藏
题目 输入一行文字,找出其中大写字母、小写字母、空格、数字以及其他字符各有多少。 相关知识点: 试题来源: 解析解: #include void main () { int upp=0,low=0,dig=0,spa=0,oth=0,i=0; char *p,s[20]; printf(“input string:”); while((s[i]=getchar())!=’\n’) i++;...
题目 (指针 易)输入一行文字,找出其中大写字母、小写字母、空格、数字以及其他字符有多少个? 相关知识点: 试题来源: 解析#include “stdio.h” main() { static char x[50]; char *p=x; int big=0, little=0, digiter=0,other=0; gets(p);...
输入一行文字,分别统计其中英文大写字母,小写字母,空格,数字,其他字符个数.【用指针,数组实现】 答案 #include #include void main() { char sen[256]; int ben=0,men=0,spa=0,num=0,oth=0; int i; gets(sen); for(i=0;i='A'&&sen[i]='a'&&sen[i]=' ') { spa++; } else if(sen[i]...
if(*ptr>='A'&&*ptr<='Z') {//大写字母 upper_count++; }elseif(*ptr>='a'&&*ptr<='z'){//小写字母 lower_count++; }elseif(*ptr>='0'&&*ptr<='9') {//数字字符 digit_count++; }elseif(*ptr==' ') {//空格字符 space_count++; ...
编程实现在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=__...
输入一行文字,找出其中大写字母、小写字母、空格、数字以及其他字符各有多少 解题思路: 字符可以直接进行比较,但是要注意字符串中的数字是字符数字,必须以字符的形式比较,也就是加上单引号 答案: #include <stdio.h> #include <string.h> int
){smallw++;}else if(ch=0){space++;}elseothers++;}printf("数字:%d个,大写字母:%d个,小写字母:%d个,空格:%d个,其他字符:%d个\n",num,bigw,smallw,space,others);return 0;}结果如下:如果想要算出‘+’,‘-’等的个数,可以再加几个else if 语句在else语句之前,望采纳。