L1-005. 考试座位号

    xiaoxiao2021-03-25  69

    L1-005. 考试座位号

    ######问题描述:

    java代码:
    import java.util.Scanner; /**考试座位号 * Created by pc on 17-3-12. */ public class Main { public static void main (String[] args){ Scanner input = new Scanner (System.in); int a=input.nextInt(); String b[]=new String [a]; int c[] = new int[a]; int d[]= new int[a]; for(int i= 0; i<a;i++){//依次存入信息 b[i]=input.next(); c[i]=input.nextInt(); d[i]=input.nextInt(); } int e=input.nextInt();//查找的个数 int f[]=new int[e]; for (int i=0 ; i<e;i++){ f[i]=input.nextInt();//要查找的试机号 } for(int i=0; i<e;i++){ for (int j=0;j<a;j++){ if(f[i]==c[j]){ System.out.println(b[j]+" "+d[j]); } } } } }
    结果[结果部分显示超时,如果可以优化该代码,可以给我留言]

    转载请注明原文地址: https://ju.6miu.com/read-35965.html

    最新回复(0)