Write C#.Net program to find mirror image and inverted mirror image of matrix
Help me on this.
I need the code for C#.Net for the question below.
Write C#.NET Code to find mirror image and inverted mirror image of matrix.
INPUT
11 12 13
21 22 23
31 32 33
OUTPUT
MIRROR IMAGE
13 12 11
23 22 21
33 32 31
INVERTED MIRROR IMAGE
33 32 31
23 22 21
13 12 11
Can anyone write the code for this. Thanks for advance.