C# programozási nyelven
int[] c = new int[8];
int cindex = 0;
for(int x=0; x < a.Length; x++)
{
c[x] = a[x];
}
cindex = a.Length;
int lepteto = 0;
for(int x = 0; x < b.Length; x++)
{
lepteto = 0;
while (lepteto < a.Length && a[lepteto]!=b[x] )
{
lepteto++;
}
if (lepteto >= a.Length)
{
c[cindex] = b[x];
cindex++;
}
}
for (int i = 0; i < c.Length; i++)
{
Console.WriteLine(c[i]);
}
Console.ReadKey();
int[] c = new int[8];
int cindex = 0;
for(int x=0; x < a.Length; x++)
{
c[x] = a[x];
}
cindex = a.Length;
int lepteto = 0;
for(int x = 0; x < b.Length; x++)
{
lepteto = 0;
while (lepteto < a.Length && a[lepteto]!=b[x] )
{
lepteto++;
}
if (lepteto >= a.Length)
{
c[cindex] = b[x];
cindex++;
}
}
for (int i = 0; i < c.Length; i++)
{
Console.WriteLine(c[i]);
}
Console.ReadKey();
Nincsenek megjegyzések:
Megjegyzés küldése