文章
4
粉丝
0
获赞
0
访问
2.1k
#include <iostream>
using namespace std;
const int N = 100010;
int arr[N];
int main(){
int n;
char c;
while( cin >> n ){
int len = 0;
int times = 0;
while(cin >> arr[len++]){
if(arr[len-1] == n) { cout << len-1<<" "; times ++;}
c = getchar();
if(c == '\n'){
if(times == 0) puts("Not Found");
else printf("\n");
&...
登录后发布评论
两种情况,找到和找不到
找不到输出Not Found
找到输出它出现的次数以及它对应的位置
样例
5
1 2 5 4 4
4
其中4出现了两次,分别在第四和第五位置上,所以输出
2
4 5