-2

How to configure two array, the first containing the numbers that will be divided, and the second contains the numbers that Divisible the first one

1 Answers1

0

Similar thing you are looking for?

        List<Tuple<int, int>> recs = new List<Tuple<int, int>>();
        recs.Add(new Tuple<int, int>(4, 2));
        recs.Add(new Tuple<int, int>(8, 4));
        recs.Add(new Tuple<int, int>(9, 3));
        recs.Add(new Tuple<int, int>(12, 3));
Mallappa
  • 1
  • 3