| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 911 人关注过本帖
标题:我这个把二维数组的横列调换的怎么那么多的错误的啊
只看楼主 加入收藏
张海锋
Rank: 2
等 级:论坛游民
帖 子:52
专家分:37
注 册:2012-12-8
结帖率:55.56%
收藏
已结贴  问题点数:10 回复次数:16 
我这个把二维数组的横列调换的怎么那么多的错误的啊
#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
peach5460
Rank: 15Rank: 15Rank: 15Rank: 15Rank: 15
来 自:武汉
等 级:贵宾
威 望:30
帖 子:2780
专家分:6060
注 册:2008-1-28
收藏
得分:2 
程序代码:
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][a];
            cout<<he[a][b]<<'\t';
        }
        cout<<endl;
    }

    char ch;
    cin >> ch;
    return 0;
}

我总觉得授人以鱼不如授人以渔...
可是总有些SB叫嚣着:要么给代码给答案,要么滚蛋...
虽然我知道不要跟SB一般见识,但是我真的没修炼到宠辱不惊...
2012-12-21 08:37
张海锋
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
wp231957
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
来 自:神界
等 级:贵宾
威 望:423
帖 子:13688
专家分:53332
注 册:2012-10-18
收藏
得分:2 
楼主的代码在vs2010下能编译通过

DO IT YOURSELF !
2012-12-21 11:12
wp231957
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
来 自:神界
等 级:贵宾
威 望:423
帖 子:13688
专家分:53332
注 册:2012-10-18
收藏
得分:2 
2楼的代码在vs2010下也能编译通过

楼主不妨把错误信息贴出来

DO IT YOURSELF !
2012-12-21 11:13
张海锋
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
laoweitou
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2012-12-19
收藏
得分:0 
在我的机器上也有一个错误,只需加一个数字就可通过。
he[4][3]={} int [4][3]={0}
2012-12-21 12:45
快速回复:我这个把二维数组的横列调换的怎么那么多的错误的啊
数据加载中...
 
   



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

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