Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- submatrix mat = new submatrix(8, 5);
- mat.Build(8);
- mat.issubmatrix();
- Console.WriteLine(mat.issubmatrix());
- mat.print();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement