#include
int main() //main后面是有括号,main是一个函数
{
char ch;
int letter=0,i,blank=0,number=0,others=0; //语句结束是有分号的。
printf("请输入一串字符:");
//scanf("%c",&ch); //既然下面用getchar()获取,何必使用scanf多此一举呢??
while((ch=getchar())!= '\n') //注意括号的位置,而且括号一一对应,不能多个,少个。
{
if('a'<=ch && ch<='z' || 'A'<=ch && ch<='Z') //怎么都少半个括号,??
{
letter++;
}
else if('0'<=ch&&ch<='9')
{
number++;
}
else if(ch==' ')
{
blank++;
}
else
{
others++;
}
}
printf("英文字母、空格、数字、其他字符的个数分别为:%d,%d,%d,%d\n",letter,blank,number,others);
return 0;
}
#include
int main{
char ch;
int letter=0,i,blank=0,number=0,others=0
printf("请输入一串字符:");
scanf("%c",&ch);
while((ch=getchar())!='\n'
{
if(('a'<=ch&&ch<='z')||('A'<=ch&&ch<='Z'))
{
letter++;
}
else if('0'<=ch&&ch<='9')
{
number++;
}
else if(ch==' ')
{
blank++;
}
else
{
others++;
}
}
printf("英文字母、空格、数字、其他字符的个数分别为:%d,%d,%d,%d\n",letter,blank,number,others);
return 0;
}