[求助]c语言用VC编译过程中遇到的错误提示,不知道是什么原因!
我的程序中定义了几个数组:double c[4],s[4],w[4],d[4],h[4]={0.0,0.5,0.5,1.0};
。。。。。
c[0]=uc0-i*r;
s[0]=(fx-ff)/m;
w[0]=v0;
1】d[0]=-i/c;
。。。。。
for(j=1;j<4;j++)
{
。。。。。
c[j]=uc-i1*r;
s[j]=(fx-ff)/m;
w[j]=v;
2】 d[j]=-i1/c;
。。。。。。
}
。。。。。。。
每次编译的时候都会出现如下的错误:
(1)D:\xzy\dtfx\dtfx.cpp(133) : error C2297: '/' : illegal, right operand has type 'double [4]'
(2)D:\xzy\dtfx\dtfx.cpp(150) : error C2297: '/' : illegal, right operand has type 'double [4]'
第一条错误指向1】的位置,第二条错误指向2】的位置,这到底是什么原因呢?急需各位大侠指点!非常感谢!