写一句你认为最有价值的代码,是时候考量下你的水平的时候咯

解决方案 »

  1.   

    System.out.println("good good study, day day up! ^_^");
      

  2.   

    System.out.println("还是Ide方便");
      

  3.   

    System.out.println("give me!!!");
      

  4.   

    try{
    Object work = "hard";
    }catch(Exception mistake){
    Log.warning("study from "+mistake);
    }finally{
    System.out.println("take it");
    }
      

  5.   

    int b = 125;
    int fellting = 2 * b; 
      

  6.   

    System.out.println('2'>>>'A');
      

  7.   

    while(true){
    money++;
    illness *= 0;
    holidy++;
    }
      

  8.   

    int i = 1;
    try{
       System.out.println("111");
       return i;
    }finally{
       System.out.println("222");
       i++;
    }
      

  9.   


    public class HelloWorld{
       public static final void main(String[] args) {
           System.out.println("HelloWorld");
       }
    }