输入一行文字 找出其中的大写字母、小写字母、空格、数字以及其他字符各有多少。用指针处理 答案 #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)...
题目 输入一行文字,找出其中大写字母、小写字母、空格、数字以及其他字符各有多少。 相关知识点: 试题来源: 解析解: #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);...
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++; }else{//其他字符 other_count++; } ptr++; }...
){smallw++;}else if(ch=0){space++;}elseothers++;}printf("数字:%d个,大写字母:%d个,小写字母:%d个,空格:%d个,其他字符:%d个\n",num,bigw,smallw,space,others);return 0;}结果如下:如果想要算出‘+’,‘-’等的个数,可以再加几个else if 语句在else语句之前,望采纳。
int count[5]={0,0,0,0,0};//创建计数器数组并初始化 第二、判断数字应该加引号,下面的语句:else if(*(p+i)>=0&&*(p+i)<=9)应该修改为:else if(*(p+i)>='0'&&*(p+i)<='9')第三、空格应该使用单引号,下面的语句:else if(*(p+i)==" ")应该修改为:else if(*(p...
if(*p++>='A'&&*p++<='Z')a++;算法有问题,你判断的时候,不管是否符合,都++运算了,而且可能还连加两次,那当前字符就不管它了么
includevoidmain(){charq[100];char*p;inta=0,b=0,c=0,d=0,e=0,f=0,i;p=q;for(i=0;i64&&*p96&&*p47&&*p<58)d++;elsee++;p++;}}e=e-f;printf("该字符串中\n");printf("大写字母有%d个\n",a);printf("小写字母有%d个\n",b);printf("空格有%d个\n",c);printf("...
输入一行文字,找出其中大写字母、小写字母、空格、数字以及其他字符各有多少 解题思路: 字符可以直接进行比较,但是要注意字符串中的数字是字符数字,必须以字符的形式比较,也就是加上单引号 答案: #include <stdio.h> #include <string.h> int
输入一行文字,找出其中大写字母、小写字母、空格、数字以及其他字符各有多少 解题思路: 字符可以直接进行比较,但是要注意字符串中的数字是字符数字,必须以字符的形式比较,也就是加上单引号 答案: #include <stdio.h> #include <string.h> int