GGJJ们,帮我看下错在哪了。
我是刚刚开始学C的,现在看老潭的书呢。刚刚看到数组!下面是我做他书上作业出的问题!可以编译,但结果老不对!!请GGJJ们帮忙看看!
#include<stdio.h> main() {char c; int letter=0,space=0,digit=0,other=0; printf("enter a line letter:\n"); while((c=getchar())!='\n') {if(c>='a'&&c<='z'||c>='A'&&c<='Z') letter++; else if(c='') space++; else if(c>='0'&&c<='9') digit++; else other++; } printf("letter=%d,space=%d,digit=%d,other=%d\n",letter,space,digit,other); getch(); }