求写一函数判断一个字符串是否为纯字母,主函数输出纯字母字符串个数
求写一函数判断一个字符串是否为纯字母,主函数输出纯字母字符串个数
程序代码:
#include "stdio.h" int fun(char *s) { int n; char *p; p=s; n=0; while(*p) { if((*p>='a'&&*p<='z') ||(*p>='A'&&*p<='Z') ) n++; p++; } return n; } int main() { char s[100]; int num; //num是字母个数 scanf("%s",s); //输入一个字符串放在数组s中 num=fun(s); printf("字母个数%d",num); }
[此贴子已经被作者于2018-6-2 16:28编辑过]