{ יש להעתיק את התוכנית, למחקו שורות מיותרות בהתחלה ובסוף להריץ את התוכנית : משימות הכדור יקפוץ מהר יותר הכדור לא יחליף צבעים הכדור יטייל את פינות המסך הכדור יטייל על כל המסגרת של המסך } #include #include #include int main(void) { _setcursortype(_NOCURSOR); clrscr(); gotoxy(20,5); textcolor(3); cprintf("o"); delay(300); clrscr(); gotoxy(25,10); textcolor(4); cprintf("o"); delay(300); clrscr(); gotoxy(30,5); textcolor(5); cprintf("o"); delay(300); clrscr(); gotoxy(35,13); textcolor(6); cprintf("o"); delay(300); clrscr(); gotoxy(40,5); textcolor(3); cprintf("o"); delay(300); clrscr(); gotoxy(45,16); textcolor(4); cprintf("o"); delay(300); clrscr(); gotoxy(50,5); textcolor(5); cprintf("o"); delay(300); clrscr(); gotoxy(55,19); textcolor(6); cprintf("o"); gotoxy(1,23); cprintf("Press any key to continue"); getch(); }