第一篇:输入一行字符,分别统计出其中英文、空格、数字和其他字符的个数
#include
int main()
{char ch;int A=0,B=0,C=0,D=0;
printf(“A(字符)B(空格)C(数字)D(其它):n”);
printf(“请输入一串字符:”);
while((ch=getchar())!='n')
{if('a'<=ch && ch<='z' || 'A'<=ch && ch<='Z')A=A+1;
else if('0'<=ch&&ch<='9')C=C+1;
else if(ch==' ')B=B+1;
else D=D+1;
}
printf(“英文字母、空格、数字、其他字符的个数分别为:%d,%d,%d,%dn”,A,B,C,D);return 0;
}
第二篇:C#中键盘输入一串字符,输出该字符包含字母、数字个数
using System;
using System.Collections.Generic;using System.Linq;
using System.Text;
namespace study
{
class Program
{
static void Main(string[] args){
{
{
numberSum=}
{
smallSum=}
{
bigSum=}
{
elseSum=}
}
}
}
}
Console.WriteLine(“请输入字符:”);string a = Console.ReadLine();int numberSum=0,smallSum=0,bigSum=0,elseSum=0;for(int i = 0;i < a.Length;i++)if(a[i] >= 48 && a[i] <= 57)numberSum+1;else if(a[i] >= 97 && a[i] <= 122)smallSum+1;else if(a[i] >= 65 && a[i] <= 90)bigSum+1;else elseSum+1;Console.WriteLine(“数字有{0}个”, numberSum);Console.WriteLine(“小写字母有{0}个”, smallSum);Console.WriteLine(“大写字母有{0}个”, bigSum);Console.WriteLine(“其他有{0}个”, elseSum);
第三篇:c语言编程 有一篇文章共有3行文字每行80个字符要求分别统计出其中英文字母数字空
C语言编程 有一篇文章,共有3行文字,每行80个字符。要求分别统计出其中英文字母,数字,空...2种做法,1种用单字符来读取输入,1种用字符串来读取输入。1.#include
while((c =
if('A' <= c && c <= 'Z')
else if('a' <= c &&
else if('0' <= c
else if(c == upper++;
c <= 'z')lower++;
&& c <= '9')' ')space++;
digit++;
else other++;printf(“upper:%dnlower:%dndigit:%dnspace:%dnother:%dn”, upper, lower, digit, space, other);return 0;} 2.#include
for(j = 0;str[i][j];j++)
gets(str[i]);
if('A' <= str[i][j]
upper++;&& str[i][j] <= 'Z')
else if('a' <= str[i][j] && str[i][j] <= 'z')lower++;
else if('0' <= str[i][j] &&
digit++;
else if(str[i][j] == ' ')str[i][j] <= '9')
space++;
else
other++;}printf(“upper:%dnlower:%dndigit:%dnspace:%dnother:%dn”, upper, lower, digit, space, other);return 0;}提问人的追问
2009-05-02 11:48
“for(j = 0;str[i][j];j++)”这一句没有限制条件吧!是不是应该写成“for(j=0;str[i][j]!=' ';j++)”?回答人的补充
2009-05-02 12:04
str[i][j]跟str[i][j]!=' '是一样的。C语言以非0为真,0为假,字符串以' '为结束标志,' '实际上就是数字0。str[i][j]这种形式在C语言中是很普遍的。