输入一行字符,分别统计出其中的英文字母个数,空格数字和其他字符的个...
Private Sub Form_Load()Dim K%, L%, N%, R% ' 分别表示总个数、字母、数字、其他字符个数 ' 这句可省 K = InputBox("多少个数?")For i = 1 To K m = InputBox("请输入字符")Text1 = Text1 & m & " " ' 显示字符,为了验证,可省 Select Case m Case "a" To ...
C语言题目输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的...
if('a'<=nextchar<='z'||'A'<=nextchar<='Z')else if('0'<=nextchar<='9')修改后:include <stdio.h> int main(){ int letter=0,space=0,number=0,others=0;char nextchar;printf("Input your string\\n");for(;nextchar!='\\n';){ scanf("%c",&nextchar);if('a'<=nextchar...
c++ 输入一行字符,分别统计出其中
1、while语句:include<stdio.h>int main(void){ \/\/输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数。 char ch; int char_num=0,kongge_num=0,int_num=0,other_num=0; while((ch=getchar())!='\\n')\/\/回车键结束输入,并且回车符不计入 { if(ch>...
c++输入一行字符,分别统计出其中英文字母,空格,数字字符和其它字符的个...
include <iostream>using namespace std;int main(){ char c; int el=0,sp=0,nu=0,other=0; while(cin.get(c)) { if(c=='\\n') break; if((c>='A' && c<='Z')||(c>='a' && c<='z')) el++; else if(c>='0'&&c<='9') nu++; ...
输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数
int main(){ char c;int letters=0,spaces=0,digits=0,others=0;printf("请输入一串任意的字符:\\n");while((c=getchar())!='\\n'){ if((c>='a'&&c<='z')||(c>='A'&&c<='Z'))letters++;else if(c>='0'&&c<='9')digits++;else if(c==' ')spaces++;else others++...
...输入一行字符,分别统计出其中的英文字母、空格、数字和其他字符的个...
int letter=0,number=0,blank=0,other=0;char c[100] = {0};\/\/ int i = 0;gets(c);\/\/ do { if((c[i]>='A'&&*c<='Z')||(c[i]>='a'&&*c<='z'))\/\/ letter++;else if(c[i]==' ')\/\/ blank++;else if(c[i]>='0'&&c[i]<='9')\/\/ number++;else other...
c语言:输入一行字符,分别统计出其中英文字母,空格,数字和其它字符的个...
char a[N];int i,m=0,n=0,b=0,c=0;printf("Input a string:");gets(a);for(i=0;a[i]!='\\0';i++){ if(a[i]>='a'&&a[i]<='z'||a[i]>='A'&&a[i]<='Z')m++;else if(a[i]>='0'&&a[i]<='9')n++;else if(a[i]==' ')b++;else c++;} printf(...
输入一行字符,分别统计出其中大小写英文字母、空格、数字和其他字符的个...
printf("请输入一串任意的字符:\\n");while((c=getchar())!='\\n'){ if((c>='a'&&c<='z')||(c>='A'&&c<='Z'))letters++;else if(c>='0'&&c<='9')digits++;else if(c==' ')spaces++;else others++;} printf("字母有%d个,数字有%d个,空格有%d个,其他有%d个",...
输入一行字符.请编写程序分别统计出其中英文字母.数字.空格和其他字 ...
{ char word;int a,b,c,d;a=b=c=d=0;cout<<"\\n\\n\\n\\t请输入一行字符:";while ((word=getchar())!='\\n'){ if (word>64 && word<91) a++;else if (word>96 && word<123) a++;else if (word>47 && word<58) b++;else if (word==32) c++;else d++;} cout<<"...
c++输入一行字符串,要求分别统计出其中英文大写字母、小写字母、数字...
printf("大写字母有%d个\\n小写字母有%d个\\n空格有%d个\\n数字有%d个\\n其他字符有%d个\\n",ben,men,spa,num,oth);getchar();} ———如果以上出现“%”符号,那是为了防止系统误识我把半角符号写成全角符号了,注意改回来。———亲爱的lz,如果我的回答能够帮你解决问题,或是对你有...