单项选择题

下列程序的输出结果是()。
a=1;
switcha
case3|4
disp(‘perfect’)
case{1,2}
disp(‘ok’)
otherwise
disp(‘no’)
end

A.ok
B.perfect
C.no
D.2