Need help with this project
1. Declare two integers, one for row number entered one for the number of columns entered
2. Declare a string variable named dummy it will be used for the ending prompt.
3. Display the title [item #1] using Console.Writeline()
4. Display a blank line [2] using Console.Writeline()
5. Display an input prompt [3] using Console.Write()
6. Accept the number of rows using Console.Readline()
7. Display an input prompt [4] using Console.Write()
8. Accept the number of columns using Console.Readline()
9. Display a blank line [5] using Console.Writeline()
10. Display tab “/t” using Console.Write() [6] – this create a column for the row header.
11. In a FOR…LOOP display the number from 1 to columns. [6] Inside your Console.WriteLine() use the “/t”.
12. Display a blank line [7] using Console.Writeline()
13. Using nested for…loops to produce the matrix [8]. The “outer” for…loop counts the number of rows, the inner for…loop counts the number of columns.
14. Display a blank line [9] using Console.Writeline()
15. Display ending prompt [10].