A. Acquire the appropriate tools that are going to be used.
B. Touch the case to discharge static.
C. Remove loose jewelry.
D. Refer to manufacturer documentation.
第1题:
没有Do-case、Do-until形结构,就不能实现某些结构化程序,从而降低了程序的运行效率。()
第2题:
1、下列不属于循环结构的是()。
A.while
B.do-while
C.for
D.switch-case
第3题:
下面关于伪类和伪元素的说法不正确是
A.伪类和伪元素的写法类似,只在CSS选择器中体现,不许书写HTML
B.:active,:hover属于伪类
C.:first-child,:first-line,:first-letter属于伪类
D.:before,:after属于伪元素
第4题:
下列不属于循环结构的是()。
A.while
B.do-while
C.for
D.switch-case
第5题:
以下结构属于条件结构的是?
A.switch…case…end
B.try…catch...end
C.do…while
D.while…end
第6题:
1、分析下列程序,并写出程序运行结果 void main(void) { int k=0; int c=1; do { switch (c++) { case 1: k++; break; case 2: k--; case 3: k+=2; break; case 4: k=k%2; continue; case 5: k=k*10; default: k=k/3; } k++; } while(c<7); cout<<“k=“<<k<<endl; }