从键盘输入一个字符串 使用指针判断字符串中大写字母 小写字母 数字 的个数并输出

#include
#include
using namespace std;
void fun(char *p)
{ int i;
int a,b,c;
a=b=c=0;
for(i=0;i<=strlen(p);i++)
{ if(*(p+i)>='A'&&*(p+i)<='Z')
a++;
if(*(p+i)>='a'&&*(p+i)<='z')
b++;
if(*(p+i)>='0'&&*(p+i)<='9')
c++;
// p++;
}
cout<<"该字符串中大写字母有"<



}
void main()
{ void fun(char *p);
char a[1000];
cout<<"请输入字符串"< fun(gets(a));
}

你可能感兴趣的:(c/c++)