单项选择题

针对下列程序段,需要______个测试用例才可以满足语句覆盖的要求。 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; }

A.2
B.3
C.4
D.5