大家帮忙看下这个程序,错在哪,我实在找不到,知道的大哥指点下
大家帮忙看下这个程序,错在哪,我实在找不到,知道的大哥指点下
#include<stdio.h>
#include<windows.h>
void main()
{
enum color{red,yellow,blue,white,black};
enum color c;
for(c=red;c<=black;c++)
{
switch(c)
{
case red:printf("红色");break;
case yellow:printf("黄色");break;
case blue:printf("蓝色");break;
case white:printf("白色");break;
case black:printf("黑色");break;
}
printf("\n\n");
}
MessageBox(NULL,"要关闭窗口请点确定","提示",MB_OK);
}
[解决办法]
switch(c)
{
case 0:printf("红色");break;
case 1:printf("黄色");break;
case 2:printf("蓝色");break;
case 3:printf("白色");break;
case 4:printf("黑色");break;
}
[解决办法]
<=,++等符号在枚举类型中都未定义,使用是非法的,如果非要循环则全用int类型是较好选择。其实从你的程序可以看出来你只是在练习枚举类型的使用,所以循环是完全没有必要的
[解决办法]
错误有可能是字符集问题,你在每个字符串前加_T 试下,例如:"红色" 改为 _T("红色");还有就是main函数的写法从void main(){} 改为int main(){return 0;}
还有就是你要贴出编译错误,别人才知道问题所在
[解决办法]
试试三楼的方法,当然也有可能是你项目的属性配置有问题,你把错误提示贴出来看看
[解决办法]
#include<stdio.h>
#include"stdafx.h"
#include<windows.h>
enum color{red,yellow,blue,white,black};
void main()
{
color c;
c=red;
for(int i=1;i<=int(black);i++)
{
switch(c)
{
case red:printf("红色");break;
case yellow:printf("黄色");break;
case blue:printf("蓝色");break;
case white:printf("白色");break;
case black:printf("黑色");break;
}
printf("\n\n");
c=color(i);
}
MessageBox(NULL,L"要关闭窗口请点确定",L"提示",MB_OK);
}
上面的程序是在尽量保留你的原程序的基础上改的,我用vs2005建的CLR程序所以MessageBox的语法改了一下。
[解决办法]
我的失误,把for(int i=1;i<=int(black);i++)改成for(int i=1;i<=int(black)+1;i++)就行了,或者重写一下:
#include<stdio.h>
#include<windows.h>
enum color{red,yellow,blue,white,black};
void main()
{
color c;
for(int i=0;i<=int(black);i++)
{
c=color(i);
switch(c)
{
case red:printf("红色");break;
case yellow:printf("黄色");break;
case blue:printf("蓝色");break;
case white:printf("白色");break;
case black:printf("黑色");break;
}
printf("\n\n");
}
MessageBox(NULL,"要关闭窗口请点确定","提示",MB_OK);
}
[解决办法]
动脑子想想就清楚enum没有++运算
比如
enum color { red=0,white=1,yellow=2,black=4}
color c=yellow;
c++ 变成了什么??