本帖最后由 zhangx 于 2013-4-13 10:56 编辑
如下面代码,我想查询temp是不是给定数组的元素,当temp=4即是给定数组里的元素时没问题,当temp=40时,怎么显示打印temp不是数组的元素啊?
代码:
public class Demo{
public static void main(String args[]){
int score[]={0,1,2,3,4,5,6,7,8,9};
int temp=4 ;
for(int i=0;i<score.length;i++){
if(temp==score){
System.out.println(temp+"是数组的元素");
}
}
}
}
|