用C语言编写一段程序,题目:输入一行字符,分别统计出其中的英文字母、空格、数字和其他字符的个数。
用C语言编写一段程序,题目:输入一行字符,分别统计出其中的英文字母、空格、数字和其他字符的个数。
日期:2018-04-13 22:34:22 人气:2
非要限制输入的大小么?过会儿给你发个
#include
#include
void main(){
char m_input;
int digit=0,space=0,others=0,uppercase=0,lowercase=0;
printf("Please input string:");
while ((m_input=getchar())!='\n')
{
if (m_input>='a'&