二维数组顺序初始化哪里错了呢?
#include "iostream.h"#include "iomanip.h"
int main()
{
int array1[3][2]={4,2,5,6};
cout<<"array1"<<endl;
for(int i=0,i<3,i++)
{
for(int j=0,j<2,j++)
{
cout<<sew(2)<<array1[i][j];
}
cout<<endl;
}
return 0;
}
组建里显示
--------------------Configuration: 1 - Win32 Debug--------------------
Compiling...
1.cpp
F:\教育教学\练习\1.cpp(7) : error C2143: syntax error : missing ',' before '<'
F:\教育教学\练习\1.cpp(7) : error C2086: 'i' : redefinition
F:\教育教学\练习\1.cpp(7) : error C2059: syntax error : '<'
F:\教育教学\练习\1.cpp(8) : error C2143: syntax error : missing ';' before '{'
F:\教育教学\练习\1.cpp(9) : error C2143: syntax error : missing ',' before '<'
F:\教育教学\练习\1.cpp(9) : error C2086: 'j' : redefinition
F:\教育教学\练习\1.cpp(9) : error C2059: syntax error : '<'
F:\教育教学\练习\1.cpp(10) : error C2143: syntax error : missing ';' before '{'
F:\教育教学\练习\1.cpp(11) : error C2065: 'sew' : undeclared identifier
执行 cl.exe 时出错.
1.obj - 1 error(s), 0 warning(s)
可我看不懂啊