问题是:在一个有 26 名学生的班级中,给出了一个包含 10 个问题的测试。学生通过掷硬币回答问题。我必须找出有两个或更少答案正确的学生。这是我写的程序,但我不确定……它好吗?
correct=0;
students=0;
for i=1:26
for j=1:10
answ=ceil(rand);
if answ==1
correct=correct+1;
if correct==2
students=students+1;
end
end
end
end
disp(students)