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

getchar()解决“输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数”

时间:2020-01-23 14:10:07      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:头文件   char   rac   others   key   cpp   roc   let   other   

  (1)getchar()函数的作用是从计算机终端(一般为键盘)获取一个无符号字符。getchar()函数只能接收一个字符,其函数值就是从输入设备获取到的字符。

该函数声明在stdio.h头文件中,使用的时候要包含stdio.h头文件。如:

  #include<stdio.h>

  int getchar(void);
 
#include "stdio.h" 
main() {
char c;   
int letters=0,space=0,digit=0,others=0;  
printf("please input some characters\n");  
while((c=getchar())!=‘\n‘)  { 
 if(c>=‘a‘&&c<=‘z‘||c>=‘A‘&&c<=‘Z‘)   letters++;  else if(c==‘ ‘)   space++;     
else if(c>=‘0‘&&c<=‘9‘)        digit++;      
else         others++;
} 
printf("all in all:char=%d space=%d digit=%d others=%d\n",letters, space,digit,others);
 }
 

getchar()解决“输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数”

标签:头文件   char   rac   others   key   cpp   roc   let   other   

原文地址:https://www.cnblogs.com/qq2806933146xiaobai/p/12230544.html

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