C语言:编写一个程序统计输入字符串中,各个数字、空白字符、以及其他所有字符出现的次数。

#include

int main()
{
     int c = 0;
     int num_count = 0;
     int emp_count = 0;
     int els_count = 0;
     
     while((c = getchar()) != EOF)
     {
          if((c >= '0')&&(c <= '9'))
          {
               num_count ++ ;
          } 
          else if(c == ' ')
          {
               emp_count ++; 
          }
          else
          {
               els_count ++; 
          }
     }
     
     printf("%d %d %d",num_count,emp_count,els_count);
     return 0; 
}

 

 

650) this.width=650;" style="width:604px;height:357px;" title="捕获.PNG 5.PNG" alt="wKiom1Yt2tSDLSaKAADOzp4evQI624.jpg" src="http://s3.51cto.com/wyfs02/M00/74/E8/wKiom1Yt2tSDLSaKAADOzp4evQI624.jpg" height="383" width="599" />

另外,方法2相比优与方法1

(1)可计算出每个数字具体有几次。

(2)对于空格使用了函数isspace()。


#include


int main()
{
     int c = 0;
     int num_count = 0;
     int emp_count = 0;
     int els_count = 0;
     int arr[10] ={0};
     int i = 0;
     
     while((c = getchar()) != EOF)
     {
          if(c >= '0'&&c <= '9')
          {
               arr[c-'0'] ++;    
          } 
          else if(isspace(c))
          {
               emp_count ++;
          }
          else
          {
               els_count ++; 
          }
     }
     
     printf("emp_count: %d\n",emp_count);
     printf("els_count: %d\n",els_count);
     
     for( ; i<10;i++)
     {
          printf("%d:%d\n", i, arr[i]); 
     }
     return 0; 
}

 

650) this.width=650;" title="捕获.PNG3.PNG" src="http://s3.51cto.com/wyfs02/M01/75/03/wKioL1Ywlt7hETjCAADwVuvP04A502.jpg" alt="wKioL1Ywlt7hETjCAADwVuvP04A502.jpg" />

你可能感兴趣的:(C语言)