# include <stdio.h>
#define MAXHIST 15
#define MAXWORD 11
#define IN 1
#define OUT 0
int main(void)
{
int c, i, nc, state;
int len;
int maxvalue;
int ovflow;
int wl[MAXWORD];
state = OUT;
nc = 0;
ovflow = 0;
for(i = 0; i < MAXWORD; ++i)
wl[i] = 0;
while((c = getchar())!=EOF){
if(c == ' ' || c == '\n' || c == '\t'){
state = OUT;
if(nc > 0)
if(nc < MAXWORD)
++wl[nc];
else
++ovflow;
nc = 0;
}else if (state = OUT){
state = IN;
nc = 1;
}else
++nc;
}
maxvalue = 0;
for(i = 1; i < MAXWORD; ++i)
if(wl[i] > maxvalue)
maxvalue = wl[i];
for(i = 1; i < MAXWORD; ++i){
printf("%5d - %5d : ",i, wl[i]);
if(wl[i] > 0){
if((len = wl[i] * MAXHIST / maxvalue) <= 0)
len = 1;
}else
len = 0;
while(len > 0){
putchar('*');
--len;
}
putchar('\n');
}
if(ovflow > 0)
printf("There are %d words >= %d\n", ovflow, MAXWORD);
}
7 个解决方案
#1
确认编译链接通过,按F11键
#2
我明白,我的意思是这个程序编译通过后,输入build excute,一点显示都没有。这是为什么?应该不要输入啥的吧?貌似也没有输入函数之类的。
#3
重建所有
或者安装SP
或者重装VS
或者安装SP
或者重装VS
#4
while((c = getchar())!=EOF){
#5
add break point in the first line in main
#6
#7
貌似还是搞不定,蛋蛋的忧桑。
#1
确认编译链接通过,按F11键
#2
我明白,我的意思是这个程序编译通过后,输入build excute,一点显示都没有。这是为什么?应该不要输入啥的吧?貌似也没有输入函数之类的。
#3
重建所有
或者安装SP
或者重装VS
或者安装SP
或者重装VS
#4
while((c = getchar())!=EOF){
#5
add break point in the first line in main
#6
不清楚,唉,
http://blog.csdn.net/milkcu/article/details/8856768
http://hi.baidu.com/lwpping/item/320da61970fcd1653e87ce31
http://hi.baidu.com/lwpping/item/320da61970fcd1653e87ce31
#7
貌似还是搞不定,蛋蛋的忧桑。