程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c語言-把else if改為if之後為什麼數字和空格就統計不了了

c語言-把else if改為if之後為什麼數字和空格就統計不了了

編輯:編程綜合問答
把else if改為if之後為什麼數字和空格就統計不了了

#include
int letter, digit, space, others;
int main()
{
void count(char str[]);
char text[80];
printf("input string:\n");
gets_s(text);
puts(text);
letter = 0; digit = 0; space = 0; others = 0;
count(text);
printf("\nletter:%d\ndigit:%d\nspace:%d\nother:%d\n",letter,digit,space,others);
}
void count(char str[])
{
int i;
for (i = 0; str[i] != '\0'; i++)
if ((str[i] >= 'a'&&str[i] <= 'z') || (str[i] >= 'A'&&str[i] <= 'Z'))
letter++;
else if (str[i] >= '0'&&str[i] <= '9')
digit++;
else if (str[i] == ' ')
space++;
else
others++;
}

最佳回答:


for (i = 0; str[i] != '\0'; i++)
{
if ((str[i] >= 'a'&&str[i] <= 'z') || (str[i] >= 'A'&&str[i] <= 'Z'))
letter++;
else if (str[i] >= '0'&&str[i] <= '9')
digit++;
else if (str[i] == ' ')
space++;
else
others++;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved