提交时间:2020-10-31 14:45:33
运行 ID: 8048
#include<bits/stdc++.h> using namespace std; int main(){ int a[101]={0},b[101]={0},c[101]={0}; int m,n,k=1; cin>>m>>n; for(int i=1;i<=m;i++){ cin>>a[i]; } for(int i=1;i<=n;i++){ cin>>b[i]; } for(int i=1;i<=m;i++){ for(int j=1;j<=n;j++){ if(a[i]==b[j]){ c[k]=a[i]; k++; } } } sort(c+1,c+k+1); for(int i=1;i<k;i++){ cout<<c[i+1]<<' '; } // for(int i=1;i<=m;i++){ // for(int j=1;j<=n;j++){ // if(c[j]>c[j+1]){ // int t=c[j]; // c[j]=c[j+1]; // c[j+1]=t; // } // } // } // if(k==0){ // cout<<-1; // }else{ // for(int i=1;i<=k;i++){ // cout<<c[i]<<' '; // } // } return 0; }