Output problem for If - statement in For - Loop
显示 更早的评论
This is a part of my code:
answerCoordinates = [238, 285; 152, 130; 108, 565; 489, 557; 238, 287; 289, 557; 530, 335];
for i = 1:size(answerCoordinates, 1)
answerX = answerCoordinates(i, 1);
answerY = answerCoordinates(i, 2);
if x >= (answerX - 25) && x <= (answerX + 25) && y >= (answerY - 25) && y <= (answerY + 25)
fprintf("You have found a new spot! \n");
fprintf("Current Progress: %d/5 \n",currentLoop)
currentLoop = currentLoop + 1
% else
% stopThegame = stopThegame + 1
% else
% fprintf("Ops!Wrong Spot!Start Again!")
% rect = findall(gcf,'Type', 'Rectangle');
% delete(rect);
% currentLoop = 1
end
% if stopThegame ~= 7
% fprintf("Ops!Wrong Spot!Start Again!")
% rect = findall(gcf,'Type', 'Rectangle');
% delete(rect);
% currentLoop = 1
% end
end
The for loop will iterate 7 times, considering there are only 7 answers. The if-statement aims to identify whether the user's entered coordinate matches one of the answer coordinates. I'm having difficulty outputting the value when the user's coordinate doesn't match any of the answer coordinates. The section involving '%' is my attempt to address this issue, but it hasn't been successful so far.
How can I solve this problem?
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Programming 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!