文章

4

粉丝

0

获赞

0

访问

2.1k

头像
找到整数位置 题解:没看明白这道题样例的输入格式 o^o求大佬浇浇
P1886 武汉大学机试题
发布于2024年1月11日 11:24
阅读数 521

#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");
   &...

登录查看完整内容


登录后发布评论

2 条评论
snake VIP
2024年1月12日 19:37

两种情况,找到和找不到

找不到输出Not Found

找到输出它出现的次数以及它对应的位置

样例

5
1 2 5 4 4
4

其中4出现了两次,分别在第四和第五位置上,所以输出

2

4 5

赞(1)

tlsn : 回复 snake: 感谢,明白了

2024年1月15日 11:12