1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
#include <iostream>
#define newl cout<<endl;
using namespace std;
void printArray(int twoD[][10])
{
for( int j=0; j<10; j++)
{
for( int i=0; i<10; i++)
{
cout<<twoD[j][i]<<"\t";
}
newl
}
}
int main ()
{
int row,column;
int printCol(int);
int twoDa[10][10] = {{1,0,0,0,0,0,0,0,0,0} ,{0,1,0,0,0,0,0,0,0,0} ,{0,0,1,0,0,0,0,0,0,0} ,{0,0,0,1,0,0,0,0,0,0} ,{0,0,0,0,1,0,0,0,0,0} ,
{0,0,0,0,0,1,0,0,0,0} ,{0,0,0,0,0,0,1,0,0,0} ,{0,0,0,0,0,0,0,1,0,0} ,{0,0,0,0,0,0,0,0,1,0} ,{0,0,0,0,0,0,0,0,0,1}};
printArray(twoDa);
cout<<"Please enter a row number [1~10] and a column number [1~10] : \n";
cout<<"Row : ";
cin>>row;
cout<<"Column : ";
cin>>column;
printCol(column);
system("pause>0");
return 0;
}
int printCol(int x)
{
for( int m=0; m<10; m++)
{
cout<<printArray[m][x];
newl
}
}
|