Exemplo n.º 1
0
        public void UT_iEOL()
        {
            object[,] matr = { { 4, 3, 2 }, { 6, 8, 7 }, { null, -5, null }, { null, null, null }, { null, null, null } };
            Matr m = new Matr(matr);

            Assert.AreEqual(2, m.iEOL());
        }
Exemplo n.º 2
0
 private static void Main(string[] args)
 {
     Matr.Rand(2, 3, 0, 10).PrintBy(x => x, ", ", "[", "]");
     "Hell".Println();
     //Matr.ReadInt32(Base.ReadInt32("N:"), Base.ReadInt32("M:"), "Элемент ({0}, {1})-ый:").Count().Numerate().MaxBy(x => x.Item).Index.Println();
 }