码迷,mamicode.com
首页 > 其他好文 > 详细

输入字符串,统计其中数字,空格和其他字符的个数

时间:2015-11-01 19:37:57      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:c

#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
int main()
{
 char a;
 int num = 0;
 int space = 0;
 int other = 0;
 while ((a = getchar()) != ‘\n‘)
 {
  if ((a >= ‘0‘) && (a <= ‘9‘))
   num++;
  else if (a == ‘ ‘)
   space++;
  else
   other++;
 }
 printf("%d %d %d", num, space, other);
 system("pause");
 return 0;
}
 

本文出自 “零点时光” 博客,请务必保留此出处http://10741764.blog.51cto.com/10731764/1708513

输入字符串,统计其中数字,空格和其他字符的个数

标签:c

原文地址:http://10741764.blog.51cto.com/10731764/1708513

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!