He earns a good salary, so he ____ be deep in debt.
A.
can ’ t
B.
must
C.
needn ’ t
D.
should
拍照语音搜题,微信中搜索"皮皮学"使用
参考答案:
参考解析:
知识点:
皮皮学刷刷变学霸
举一反三
【单选题】请先阅读下面的代码 public class Test { public Test(){ System.out.println("构造方法一被调用了"); } public Test(int x){ this(); System.out.println("构造方法二被调用了"); } public Test(boolean b)...
【单选题】请先阅读下面的代码 public class Test { public Test(){ System.out.println("构造方法一被调用了"); } public Test(int x){ System.out.println("构造方法二被调用了"); } public Test(boolean b){ System.out.println("构造方法三被调用了"); } public...
【单选题】请先阅读下面的代码 public class Test{ public Test(){ System.out.println(“ 构造方法一被调用了 ”); } public Test(int x){ this(); System.out.println(“ 构造方法二被调用了 ”); } public Test(boolea b){ this(1); System.out.println(“ 构...