简述杂志媒体的优、缺点。
参考答案:
优点:针对性强,对象明确,读者群相对稳定,易长期保存,发行区域广,印制精美。
缺点:出版周期长,时效性差,不灵活,声势小,影响面窄。
The reason why we were so late is________
A.because of the car’s breaking down
B.That the car breaking down
C.because the car broke down
D.that the car broke down
设x和y均为int型变量,则执行下面的循环后,y值为( )。 public class Sun { public static void main(String args[ ]) { int x,y; for(y=1,x=1;y<=50;y++) { if(x>=10) break; if (x%2==1) { x+=5; continue; } x-=3; } System.out.println(y); } }
A.2
B.4
C.6
D.8