שפת C/מערכים/תרגילים: הבדלים בין גרסאות בדף

תוכן שנמחק תוכן שנוסף
Crazy Ivan (שיחה | תרומות)
מ קטגוריה
שורה 349:
x--;
//if we are on the limit: move limit one step to center & change direction
if(x===u) {
u++;
dir=(dir+1)%4;
שורה 358:
y++;
//if we are on the limit: move limit one step to center & change direction
if(y===r) {
r--;
dir=(dir+1)%4;
שורה 367:
x++;
//if we are on the limit: move limit one step to center & change direction
if(x===d) {
d--;
dir=(dir+1)%4;
שורה 376:
y--;
//if we are on the limit: move limit one step to center & change direction
if(y===l) {
l++;
dir=(dir+1)%4;