解题思路:
#include <bits/stdc++.h>
using namespace std;
int a,b,d;
int c[1000000];
int main()
{
int sum=1;
cin >>a;
for(int i=1;i<=a;i++)
{
cin>>c[i];
}
cin>>d;
for(int i=1;i<=a;i++)
{
if(c[i] == d)
{
cout<<i<<endl;
return 0;
}
}
cout<<-1;
return 0;
}
注意事项:
参考代码:
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:553 |
A+B for Input-Output Practice (IV) (C++代码)浏览:713 |
妹子杀手的故事 (C语言代码)浏览:1298 |
C语言程序设计教程(第三版)课后习题6.10 (C语言代码)浏览:588 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:1482 |
1011题解浏览:819 |
A+B for Input-Output Practice (III) (C语言代码)浏览:595 |
川哥的吩咐 (C语言代码)浏览:663 |
分糖果 (C语言代码)浏览:980 |
C语言训练-大、小写问题 (C语言代码)浏览:719 |