开源之路

忆往昔, 项羽不过江. 江东好风光! 今振臂一呼,率甲三千, 试问天!
posts - 86, comments - 55, trackbacks - 0, articles - 0
  C++博客 :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理
 1#include <stdio.h>
 2#include <string.h>
 3int main()
 4{
 5    char strInput[255];
 6    int i=0;
 7    int nLength,nABC,nNum;
 8    nLength=0;nABC=0;nNum=0;
 9    scanf("%s",strInput);
10    nLength=strlen(strInput);
11    printf("所有字符数:%d\n",nLength);
12    do
13    {
14        char sTemp=strInput[i];
15        if (sTemp>=48 && sTemp<=57)
16            nNum++;
17        if ((sTemp>=65 && sTemp<=90|| (sTemp>=97 && sTemp<=122))
18            nABC++;
19        i++;
20    }
 while (i<nLength);
21    printf("字母数:%d\n",nABC);
22    printf("数字数:%d\n",nNum);
23    return 0;
24}

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理