编程:输入一个含若干字符的字符串,分别统计出其中的字母和数字的个数.

日期:2012-04-24 10:47:23 人气:3

编程:输入一个含若干字符的字符串,分别统计出其中的字母和数字的个数.

#include "stdafx.h" #include #include #include void cal(char * str){ int a=0;//shu zi ge shu int b=0;//zi mu ge shu while(*str){ printf("%c \n",*str); if(*str>='0'&&*str<='9') a++
    A+
热门评论