A. int[ ] score={90, 12, 34, 77, 56}; B. int[ ] score= new int[5]; C. int[ ] score= new int[5]{ 90, 12, 34, 77, 56}; D. int[ ] score=new int[ ]{90, 12, 34, 77, 56};
A. continue语句可以在选择语句中使用 B. continue语句可以在条件语句中使用 C. continue语句只能在循环语句中使用 D. 不输出任何内容
A. 3 B. 3.51 C. 3.5 D. 4
A. 198 B. 2e3f C. TRUE D. null