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

来源:互联网 发布:centos安装vsftpd 编辑:程序博客网 时间:2024/06/05 11:25
#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

0 0