定义一个a[2][3]的二维数组,并将所存的值输出(使用三种方式输出:数组名【下标】、数组地址和指针变量)。
1个回答
展开全部
#include <iostream>
using namespace std;
int main()
{
int i,j,a[][3]={{1,2,3},{4,5,6}};
for(i=0;i<2;i++)
for(j=0;j<3;j++)
cout<<a[i][j]<<'\t';
cout<<endl;
for(i=0;i<2;i++)
for(j=0;j<3;j++)
cout<<*(*(a+i)+j)<<'\t';
cout<<endl;
system("pause");
}
using namespace std;
int main()
{
int i,j,a[][3]={{1,2,3},{4,5,6}};
for(i=0;i<2;i++)
for(j=0;j<3;j++)
cout<<a[i][j]<<'\t';
cout<<endl;
for(i=0;i<2;i++)
for(j=0;j<3;j++)
cout<<*(*(a+i)+j)<<'\t';
cout<<endl;
system("pause");
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询