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
|
#include <iostream>
#include <iomanip>
using namespace std;
const int rows = 8;
const int columns = 6;
char matrix[rows][columns] = { '.','.','.','.','.','.',
'.','.','.','.','.','.',
'.','.','.','.','.','.',
'.','.','.','.','.','.',
'.','.','.','.','.','.',
'.','.','.','.','.','.',
'.','.','.','.','.','.',
'.','.','.','.','.','.' };
void display()
{
cout << "1" << setw(3) << "2" << setw(3) << "3" << setw(3) << "4" << setw(3) << "5" << setw(3) << "6" << endl;
for (int i = 0; i < rows; i++)
{
for (int j = 0; j < columns; j++)
{
cout << matrix[i][j] << setw(3);
}
cout << endl;
}
cout << "1" << setw(3) << "2" << setw(3) << "3" << setw(3) << "4" << setw(3) << "5" << setw(3) << "6" << endl;
}
int main()
{
display();
system("pause");
return 0;
}
|