我有这个代码,它可以工作,但不能在不同的创建世界上,因为长度不同我该如何解决这个问题?有点卡住
void moveRobot(){
for(int x=1; x<=61; x++) {
if(isSpaceInFrontOfRobotClear()) {
moveRobotForwards();
}
else {
turnRobotLeft();
turnRobotLeft();
turnRobotLeft();
}
}
}