Written test interview at the end of April

1. Lychee FM

written examination:

1. Design a test case for the WeChat text input box

2. Logic puzzles, programmers, products and tests use three languages ​​respectively, according to the given sentences, translate the given language

3. Programming question, input an array, output a pair of numbers equal to 183

public  static  void _183(){
        Scanner input=new Scanner(System.in);
        String str=input.nextLine();
        String [] strs=str.split(" ");    
        for(int j=0;j<strs.length-1;j++){
            int a=Integer.parseInt(strs[j]);
            for(int k=j+1;k<strs.length;k++){
                int b=Integer.parseInt(strs[k]);
                if(a+b==183) System.out.print("("+a+","+b+")"+" ");
            }
        }
    }

 

4. Notes on using httpclient connection pool

https://blog.csdn.net/mawming/article/details/49617829

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324894157&siteId=291194637