题目内容

Statements like “I’ve decided not to accept your job because another company has offered me a higher salary” work efficiently, frankly and therefore plausibly, as it conveys what you really care.

A. 对
B. 错

查看答案
更多问题

You ought to bear it in your mind that the decline has nothing to do with you personally. What the HRs consider is whether you are commensurate with the position.

A. 对
B. 错

下面的代码输出1,2,3,4,5,7,8,9,注意没有6,补充完成代码:public static void main(String[] args) {for(int i =________;i<10;i++){if(___________){continue;}System.out.println(i);}

下面的代码可以输出99乘法表,要求补充完整代码for(int i =1;i<=9;i++){for(int j =1;j<=9;j++){if(j>i){______________;}System.out.print(i*j+"\t");}System.out.println();}

下面的代码从键盘输入字符,直到遇到#号结束,统计字母,数字的个数,补充完成代码:public static void main(String[] args) throws IOException {char ch;int ziMu=0;//字母int shuZi = 0;//数字while(true){ch = (char)System.in.read();if(ch=='#'){___________________;}if(ch>='A'&&ch<='Z'|| ______________){_______________________;}else if(ch>='0'&&ch<='9'){_________;}}}

答案查题题库