多选题 Given:
3. public class Ice {
4. Long[] stockings = {new Long(3L), new Long(4L), new Long(5L)};
5. static int count = 0;
6. public static void main(String[] args) {
7. new Ice() .go();
8. System. out. println (count);
9. }
10. void go() {
11. for(short x = 0; x < 5; x++) {
12. if(x == 2) return;
13. for(long ell: stockings) {
14. count++;
15. if(ell == 4) break;
16. } } } }
What is the result? (Choose all that apply.)
【正确答案】 B
【答案解析】