针对下列程序段,需要(52)个测试用例才可以满足语句覆盖的要求。 switch(value){ case 0: ther=30; break; case 1: ther=50; break; case 2: ther=300; case 3: ther=other/value; break; default: ther=other * value; }
A: 2
B: 3
C: 4
D: 5
A: 2
B: 3
C: 4
D: 5
举一反三
- 针对下列程序段,需要()个测试用例才可以满足语句覆盖的要求。 switch( value) case 0;other =30; break; case 1; other =50; break; case 2;other=300; case 3; other =other /value; break; default:other =other * value;
- 下列程序段的输出结果为______。 int a=2; switch(a) case 2: System.out.println("Value is 2."); case 3: System.out.println("Value is 3."); break; default: System.out.println("end"); break;
- 给出下列的程序段,m为何值时将会输出default switch(m) { case 0: System.out.println("case 0"); case 1:System.out.println("case 1");break; case 2:System.out.println("case 2");break; default:System.out.println("default"); } A: 0 B: 1 C: 2 D: 3
- 对以下的switch语句说法正确的是 switch(num){case 1: ...break; case 0: ...break;case 2: ...break; default: ...break; }
- 若a和b均是正整型变量,正确的switch语句是( ) A: switch(pow(a,2)+pow(b,2)) {case 1:case:y=a+b;break; case 0:case 5:y=a-b;} B: switch(a*a+b*b);{case 3:case 1:y=a+b;break;case 0:y=b-a; break; } C: switch a{default:x=a+b; case 10:y=a-b;break;case 11:y=a-b;break;} D: switch(a+b){case 10:x=a+b;break;case 11:y=a-b;break;}