[原创]求助:大家给我看看这个程序,谢谢!
//使用顺序查找法查找数组中的元素import *;
import java.applet.Applet;
public class FindSort
{
public static void main(String[] args) throws IOException
{
BufferedInputStream in = new BufferedInputStream(System.in);
BufferedOutputStream out = new BufferedOutputStream(System.out);
int y[] = { 2, 4, 5, 7, 9, 0};
int a;
byte b[] = new byte[2];
System.out.println("请输入要查询的数字: ");
a = in.read(b, 0, 2);
boolean findOut = false;
for(int i = 0; i < 6; i++)
{
if(y[i] == a)
{
findOut = true;
break;
}
}
if(findOut == false)
{
out.write(b, 0, 1);
System.out.println("没有找到!");
out.flush();
}
else
System.out.println("找到!");
}
};
/*----问题:无论我输入什么,结果总是显示为“找到”,请问这个是什么问题,谢谢各位了!---*/