京东2016 JAVA实习开发工程师
时长:60分钟 总分:100分
294浏览 3人已完成答题
题型介绍
题型 | 单选题 | 多选题 |
---|---|---|
数量 | 16 | 9 |
时长:60分钟 总分:100分
294浏览 3人已完成答题
题型 | 单选题 | 多选题 |
---|---|---|
数量 | 16 | 9 |
public class Arraytest { int a[] = new int[6]; public static void main ( String arg[] ) { System.out.println( a[0] ); } }
public class Test { public static void main ( String arg[] ) { int a=10,b=4,c=5,d=9; System.out.println(++a*b+c*--d); } }
class MyTest { public static void main(String[] args) { Integer first = new Integer(3); Integer second = 3; int three = 3; System.out.println(first==second); System.out.println(first==three); } }
intfunc(x) { int count = 0; while(x) { count++; x = x&(x-1); } return count; }
int foo(int N) { int result =0; for(inti = 1; i<= N; ++i) for(int j = 1; j<= N; j += i) result += (i+j); return result; }
public class Student{ private String sname="张三"; int sage=0; } public class Bachelor extends Student{ public String major; public static void main(String[] args){ Student s = new Bachelor(); System.out.println(s.name); } }