#include <stdio.h>
void main()
{
char s[]={"abcdefghijklmnopqrstuvwxyz"};
char x[50];
int n[26],i,j[50];
printf("输入一行字符:");
gets(x);
for(i=0;x[i]!='\0';i++)
{
j[i]=x[i];
if(j[i]>=65&&j[i]<=90)
n[j[i]-65]++;
if(j[i]>=97&&j[i]<=122)
n[j[i]-97]++;
}
for(i=0;i<26;i++)
printf("%c出现了%d次\n",s[i],n[i]);
}
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++ 输入一行字符,分别统计出其中英文字母个数~~
printf("字母数:%d\\n空格数:%d\\n数字数:%d\\n其他字符:%d\\n",letters,space,digit,other);return 0;}
求用C++编写:输入一行字符,分别统计出其中英文字母、空格、数字和其他字...
\/\/#include "stdafx.h"\/\/If the vc++6.0, with this line.#include <string>#include <iostream>using namespace std;int main(int argc,char *argv[]){ string str; int letter=0,space=0,digit=0,other=0; char ch; while((ch=cin.get())!='\\n') str+=ch; ...
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++,输入一行字符,分别统计其中的英文大写字母,小写字母,数字字符和其 ...
因为一个字符占一个字节,所以字节数=字符数。创建一个数组来存放每个字符对应的ASCII码,然后根据ASCII码来判断是什么字符。大写英文字符从65-90,小写英文字符从97-122,数字字符为48-57,剩下的自然是其他字符了。设置一个循环判断语句,就行了,自己写一下代码,写不出来再问我,我再贴给你。
c++输入一行字符,分别统计出其中英文字母,空格,数字字符和其它字符的个...
sp++; else other++; } cout<<"英文字母个数="<<el<<endl<<"数 字 个 数 ="<<nu<<endl<<"空 格 字 数 ="<<sp<<endl<<"其他字符个数="<<other<<endl; system("pause"); return 0;} 望采纳!
输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的个数
printf(请输入一串任意的字符:\\n);while((c=getchar())!=\\n){ if((c=ac=z)||(c=Ac=Z))letters++;elseif(c=0c=9)digits++;elseif(c==)spaces++;else others++;} printf(字母有%d个,数字有%d个,空格有%d个,其他有%d个,letters,digits,spaces,others);return0;} \/iknow-pic....
c++输入一行字符串,要求分别统计出其中英文大写字母、小写字母、数字...
printf("大写字母有%d个\\n小写字母有%d个\\n空格有%d个\\n数字有%d个\\n其他字符有%d个\\n",ben,men,spa,num,oth);getchar();} ———如果以上出现“%”符号,那是为了防止系统误识我把半角符号写成全角符号了,注意改回来。———亲爱的lz,如果我的回答能够帮你解决问题,或是对你有...
C++编程:输入一行字符,分别统计其中的英文大写字母,小写字母、数字字符...
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;} ...
输入一行字符,分别统计出其中的英文字母个数,空格数字和其他字符的个...
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 ...