标签:std return span turn out names using 数字 namespace
从x数组中找到最多的y数组中有的数字,按在x数组中出现的顺序输出。
这题x数组和y数组都不会出现重复数字。
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int x[15],y[15];
int main(){
ios::sync_with_stdio(false);
int n,m;
cin >> n >> m;
for(int i = 1;i <= n; ++i) cin >> x[i];
for(int i = 1;i <= m; ++i) cin >> y[i];
for(int i = 1;i <= n; ++i){
for(int j = 1;j <= m; ++j){
if(x[i] == y[j]){
cout << x[i] << " ";
}
}
}
cout << endl;
return 0;
}
标签:std return span turn out names using 数字 namespace
原文地址:https://www.cnblogs.com/zhangjiuding/p/9192538.html