mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
32 lines
496 B
C++
32 lines
496 B
C++
#include <iostream>
|
|
int main()
|
|
{
|
|
int i, j, m, n;
|
|
cout << "Enter size of array 1:";
|
|
cin >> m;
|
|
cout << "Enter size of array 2:";
|
|
cin >> n;
|
|
int a[m];
|
|
int b[n];
|
|
cout << "Enter elements of array 1:";
|
|
for (i = 0; i < m; i++)
|
|
cin >> a[i];
|
|
for (i = 0; i < n; i++)
|
|
cin >> b[i];
|
|
i = 0;
|
|
j = 0;
|
|
while ((i < m) && (j < n))
|
|
{
|
|
if (a[i] < b[j])
|
|
i++;
|
|
else if (a[i] > b[j])
|
|
j++;
|
|
else
|
|
{
|
|
cout << a[i++] << " ";
|
|
j++;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|