Two Dimensional Array Program in C++

本文介绍了在C++中实现二维数组程序的方法。通过使用两个for循环,外层循环控制行,内层循环控制列。还给出了具体的C++代码,该代码会让用户输入数组的行和列大小以及元素,最后以二维形式显示数组元素。

Two Dimensional Array Program in C++

Two dimensional (2D) array can be made in C++ programming language by using two for loops,

first is outer for loop and the second one is inner for loop.

The outer for loop is responsible for rows and the inner for loop is responsible for columns as shown here in the following program.

C++ Programming Code for Two Dimensional (2D) Array

Following C++ program ask to the user to enter row and column size of the array then ask to the user to enter array elements,

and the program will display the array elements in two dimensional (i.e., display array elements in row and column):

 

#include <iostream>
using namespace std;
int main()
{
int arr[10][10], i,j,col,row;
cout<<"enter number of row for array:";
cin>>row;
cout<<"enter number of column for array:";
cin>>col;
cout<<"now enter"<<row<<"*"<<col<<"array element:";
for(i=0;i<row;i++)
{
for(j=0;j<col;j++)
{
cin>>arr[i][j];
}

}
cout<<"the array is:\n";
for(i=0;i<row;i++)
{
for(j=0;j<col;j++)
{
cout<<arr[i][j]<<" ";
}
cout<<"\n";

}
return 0;
}

转载于:https://www.cnblogs.com/poission/p/10911486.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值