1. 程式人生 > >統計數字字元個數

統計數字字元個數

 

描述:

輸入一行字元,統計出其中數字字元的個數。

輸入:

一行字串,總長度不超過255。

輸出:

輸出為1行,輸出字串裡面數字字元的個數。

樣例輸入:

Peking University is set up at 1898.

樣例輸出:

4

演算法:

#include<stdio.h>
#include<string.h>
#define max 1000
int main()
{

  int i,count=0;
  char a[max];
  gets(a);
  for(i=0;i<=strlen(a)-1;i++)
  if(a[i]>='0'&&a[i]<='9')          //確定範圍
  count++;
  printf("%d",count);
  return 0;
}