解题思路:
注意事项:
参考代码:
package arrLast; //题目 2901: 查找特定的值 import java.util.Scanner; public class t_2901 { public static void main(String args[]) { Scanner sc=new Scanner (System.in); int n=sc.nextInt(); int []arr=new int[n]; for(int i=0;i<arr.length;i++) { arr[i]=sc.nextInt(); } int tage=sc.nextInt();//需要寻找的变量 int temp=0;//记录是否找到 for(int i=0;i<arr.length;i++) { if(arr[i]==tage) {temp=1; System.out.println(i+1); break; } } if(temp==0) System.out.println(-1); } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题7.4 (C++代码)(和输入10个数排序没有区别,直接sort即可)浏览:2138 |
点我有惊喜!你懂得!浏览:2754 |
C语言训练-素数问题 (C语言代码)浏览:1065 |
A+B for Input-Output Practice (VI) (C++代码)浏览:445 |
人见人爱A+B (C语言代码)浏览:664 |
成绩转换 (C语言代码)浏览:1048 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:552 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:1261 |
陈教主的三角形 (C语言代码)浏览:1196 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:532 |