注册 登录
编程论坛 VC++/MFC

求改错 double data[3][3]={{1,23/60,1/10},{16/41,1,19/41},{3/62,24/62,11/62}};

celeli 发布于 2011-04-06 22:47, 421 次点击
在VC++6.0MFC运行的时候出现错误:
e:\smalltest\debug\msado15.tlh(407) : warning C4146: unary minus operator applied to unsigned type, result still unsigned
E:\SmallTest\SmallTestDlg.cpp(245) : error C2059: syntax error : '{'
E:\SmallTest\SmallTestDlg.cpp(245) : error C2143: syntax error : missing ';' before '{'
E:\SmallTest\SmallTestDlg.cpp(245) : error C2143: syntax error : missing ';' before '}'
E:\SmallTest\SmallTestDlg.cpp(245) : error C2143: syntax error : missing ';' before ','
E:\SmallTest\SmallTestDlg.cpp(245) : error C2143: syntax error : missing ';' before ','

希望大家指教一二,
1 回复
#2
yuccn2011-04-07 09:20
错误应该不是在这个数组的定义吧
这样编译是没有问题的,应该出错在其他地方
1