Advertisement
mmayoub

sham, Main

Oct 26th, 2021
811
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.41 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication1
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             submatrix mat = new submatrix(8, 5);
  13.             mat.Build(8);
  14.             mat.issubmatrix();
  15.             Console.WriteLine(mat.issubmatrix());
  16.  
  17.             mat.print();
  18.  
  19.         }
  20.     }
  21. }
  22.  
  23.  
  24.  
  25.  
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement