import java.io.*;
public class Ex4_1
{
public static void main(String args[])throws IOException{
BufferedReader temp=new BufferedReader(new InputStreamReader(System.in ));
System.out.println("请输入你要查询的数字:");
String str=temp.readLine();
int n=Integer.parseInt(str);
int a[]={3,5,5,7,34,36,65,75,38,74,23};
boolean bool=false;
outer:
for(int i=0;i
数组练习1
最新推荐文章于 2024-02-05 20:40:10 发布
