| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 911 人关注过本帖
标题:我这个把二维数组的横列调换的怎么那么多的错误的啊
取消只看楼主 加入收藏
张海锋
Rank: 2
等 级:论坛游民
帖 子:52
专家分:37
注 册:2012-12-8
结帖率:55.56%
收藏
已结贴  问题点数:10 回复次数:9 
我这个把二维数组的横列调换的怎么那么多的错误的啊
#include<iostream>
using namespace std;
int main()
{
    int shu1[3][4]={1,2,3,4,5,6,7,8,9,10,11,12},he[4][3]={};
    for(int a=0;a<=3;a++)
    {
        for(int b=0;b<=2;b++)
        {
            he[a][b]=shu1[b][0];
               cout<<he[a][b]<<'\t';
        }
        cout<<endl;
    }
    return 0;
}
搜索更多相关主题的帖子: namespace 
2012-12-20 21:19
张海锋
Rank: 2
等 级:论坛游民
帖 子:52
专家分:37
注 册:2012-12-8
收藏
得分:0 
回复 2楼 peach5460
为什么要增加一个字符的数组呢?

2012-12-21 10:44
张海锋
Rank: 2
等 级:论坛游民
帖 子:52
专家分:37
注 册:2012-12-8
收藏
得分:0 
回复 2楼 peach5460
不行啊还是那些错误的

2012-12-21 10:47
张海锋
Rank: 2
等 级:论坛游民
帖 子:52
专家分:37
注 册:2012-12-8
收藏
得分:0 
ram files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(8) : error C2059: syntax error : '}'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(8) : warning C4508: 'main' : function should return a value; 'void' return type assumed
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2143: syntax error : missing ';' before 'for'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2143: syntax error : missing ')' before ';'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2143: syntax error : missing ';' before '<='
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2501: 'a' : missing storage-class or type specifiers
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2143: syntax error : missing ';' before '<='
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2143: syntax error : missing ';' before '++'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2501: 'a' : missing storage-class or type specifiers
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2086: 'a' : redefinition
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2143: syntax error : missing ';' before '++'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2059: syntax error : ')'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(10) : error C2143: syntax error : missing ';' before '{'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(10) : error C2447: missing function header (old-style formal list?)
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(18) : error C2143: syntax error : missing ';' before 'return'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(19) : error C2143: syntax error : missing ';' before '}'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(19) : error C2143: syntax error : missing ';' before '}'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(19) : error C2143: syntax error : missing ';' before '}'
执行 cl.exe 时出错.

eqwe.obj - 1 error(s), 0 warning(s)

2012-12-21 12:04
张海锋
Rank: 2
等 级:论坛游民
帖 子:52
专家分:37
注 册:2012-12-8
收藏
得分:0 
回复 6楼 wp231957
ram files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(8) : error C2059: syntax error : '}'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(8) : warning C4508: 'main' : function should return a value; 'void' return type assumed
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2143: syntax error : missing ';' before 'for'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2143: syntax error : missing ')' before ';'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2143: syntax error : missing ';' before '<='
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2501: 'a' : missing storage-class or type specifiers
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2143: syntax error : missing ';' before '<='
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2143: syntax error : missing ';' before '++'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2501: 'a' : missing storage-class or type specifiers
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2086: 'a' : redefinition
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2143: syntax error : missing ';' before '++'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(9) : error C2059: syntax error : ')'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(10) : error C2143: syntax error : missing ';' before '{'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(10) : error C2447: missing function header (old-style formal list?)
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(18) : error C2143: syntax error : missing ';' before 'return'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(19) : error C2143: syntax error : missing ';' before '}'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(19) : error C2143: syntax error : missing ';' before '}'
d:\program files (x86)\microsoft visual studio\myprojects\eqweq\eqwe.cpp(19) : error C2143: syntax error : missing ';' before '}'
执行 cl.exe 时出错.

eqwe.obj - 1 error(s), 0 warning(s)

2012-12-21 12:06
张海锋
Rank: 2
等 级:论坛游民
帖 子:52
专家分:37
注 册:2012-12-8
收藏
得分:0 
回复 6楼 wp231957
我的是VC6.0++,新手不好意思哈,谢谢哈

2012-12-21 12:07
张海锋
Rank: 2
等 级:论坛游民
帖 子:52
专家分:37
注 册:2012-12-8
收藏
得分:0 
回复 10楼 laoweitou
我的下标表达式不是有了吗?为什么还要加个数字区呢?

2012-12-21 19:33
张海锋
Rank: 2
等 级:论坛游民
帖 子:52
专家分:37
注 册:2012-12-8
收藏
得分:0 
回复 12楼 fxbszj
我这里改还是不行的,但不改的话也应该能输出的啊只不过输出应该是换数组的第一列啊

2012-12-21 19:36
张海锋
Rank: 2
等 级:论坛游民
帖 子:52
专家分:37
注 册:2012-12-8
收藏
得分:0 
回复 10楼 laoweitou
不加的话为什么不一样的;我都已经标了常量的表达式了啊

2012-12-22 20:00
张海锋
Rank: 2
等 级:论坛游民
帖 子:52
专家分:37
注 册:2012-12-8
收藏
得分:0 
回复 15楼 fxbszj
我用一个数组也可以的哦不过还是谢谢啊

2012-12-22 20:01
快速回复:我这个把二维数组的横列调换的怎么那么多的错误的啊
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.047903 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved