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
|
#include <iostream>
#include <stdlib.h>
#include <stdio.h>
using std::cout;
using std::endl;
void replaceCharacters(int data[5][5])
{
for (int i = 0; i <5; i++)
{
for (int j = 0; j < 5; j++)
{
if (data[i][j] == 1)
{
cout <<"*";
}
else
{
cout << "0";
}
}
cout << endl;
}
}
int main()
{
int getA[5][5]= {{0,1,1,1,0},
{1,0,0,0,1},
{1,1,1,1,1},
{1,0,0,0,1},
{1,0,0,0,1}};
char c = '*';
replaceCharacters(getA);
return 0;
}
|