3
Answers

Write C#.Net program to find mirror image and inverted mirror image of matrix

Raja J

Raja J

12y
4.1k
1
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.

Answers (3)