2020. március 11., szerda

Metszet programozási tétel

C# programozási nyelven


int[] a = { 1, 3, 2, 1 };
            int[] b = { 5,8,2,4};

int[] c = new int[4];
            int cindex = 0;
            int lepteto = 0;

            for( int i = 0;i<a.Length;i++)
            {
                lepteto=0;
                while (lepteto < b.Length && b[lepteto]!=a[i])
                {
                    lepteto++;
                }

                if (lepteto < b.Length)
                {
                    c[cindex] = a[i];
                    cindex++;
                }

            }

            for (int i = 0; i < a.Length; i++)
            {

                Console.WriteLine(c[i]);
            }

Nincsenek megjegyzések:

Megjegyzés küldése