新微赢技术网

标题: 二维数组顺序初始化哪里错了呢? [打印本页]

作者: 西门庆    时间: 2009-11-6 01:56
标题: 二维数组顺序初始化哪里错了呢?
#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: synt




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2