标签:i++ str 数组 pre 长度 否则 cout 查找 ios
输入数组长度 n 输入数组 a[1...n] 输入查找个数m 输入查找数字b[1...m] 输出 YES or NO 查找有则YES 否则NO 。
输入有多组数据。
如果在n个数组中输出YES否则输出NO。
#include <iostream>
using namespace std;
int main(){
int a[100], b[100];
int n, m;
while(cin >> n){
for(int i = 0; i < n; i++)
cin >> a[i];
cin >> m;
while(m--){
int temp;
cin >> temp;
int j = 0;
for(j = 0; j < n; j++){
if(a[j] == temp){
cout << "YES" <<endl;
break;
}
}
if(j == n) cout << "NO" << endl;
}
}
return 0;
}
标签:i++ str 数组 pre 长度 否则 cout 查找 ios
原文地址:https://www.cnblogs.com/zhuobo/p/10204896.html