1. 程式人生 > >程式設計輸入一行文字,找出其中的大寫字母,小寫字母個數

程式設計輸入一行文字,找出其中的大寫字母,小寫字母個數

#include<stdio.h> 

void main()

{

int a=0,b=0;

char *p,s[20];

while((s[i]=getchar())!='\n')i++;

p=s;

while(*p!=10)

{

if(*p>='A'&&*p<='Z')

a++;

else if(*p>='a'&&*p<='z')

b++;

p++;

}

printf("大寫字母 %d 小寫字母 %d\n",a,b);

}