1363: 字元分類統計(C語言)
阿新 • • 發佈:2021-01-01
技術標籤:C作業
題目描述
輸入一行字元,以回車符作為輸入結束的標誌。統計其中英文字母、數字字元和其他字元的個數。
輸入
多個字元,以回車符結束,回車符不作為有效字元。有效字元個數不超過100。
輸出
輸出分3行,格式見輸出樣例。
樣例輸入
Abse 4+5*3=?
樣例輸出
letter:4
digit:3
other:5
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main ()
{
char ch[101];
int a=0,b=0,c=0,x;
gets (ch);
x=strlen(ch);
for(int i=0;i<x;i++)
{
if(ch[i]>='a'&&ch[i]<='z'||ch[i]>='A'&&ch[i]<='Z')
a++;
else if(ch[i]>='0'&&ch[i]<='9')
b++;
else
c++;
}
printf("letter:%d\ndigit:%d\nother:%d\n" ,a,b,c);
}