fork download
  1. #include <stdio.h>
  2. #include <conio.h>
  3. #include <windows.h>
  4.  
  5. #define SCREEN_WIDTH 50
  6. #define SCREEN_HEIGHT 20
  7. #define DINO_POS 5
  8.  
  9. int dinoY = SCREEN_HEIGHT - 2;
  10. int isJumping = 0;
  11. int jumpHeight = 6;
  12. int jumpProgress = 0;
  13.  
  14. void gotoxy(int x, int y) {
  15. COORD coord;
  16. coord.X = x;
  17. coord.Y = y;
  18. SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);
  19. }
  20.  
  21. void drawDino() {
  22. gotoxy(DINO_POS, dinoY);
  23. printf("O");
  24. }
  25.  
  26. void eraseDino() {
  27. gotoxy(DINO_POS, dinoY);
  28. printf(" ");
  29. }
  30.  
  31. void jump() {
  32. if (!isJumping) {
  33. isJumping = 1;
  34. jumpProgress = jumpHeight;
  35. }
  36. }
  37.  
  38. void update() {
  39. if (isJumping) {
  40. eraseDino();
  41. if (jumpProgress > 0) {
  42. dinoY--;
  43. jumpProgress--;
  44. } else {
  45. isJumping = 0;
  46. }
  47. } else if (dinoY < SCREEN_HEIGHT - 2) {
  48. eraseDino();
  49. dinoY++;
  50. }
  51. drawDino();
  52. }
  53.  
  54. int main() {
  55. char input;
  56. system("cls");
  57. drawDino();
  58.  
  59. while (1) {
  60. if (_kbhit()) {
  61. input = _getch();
  62. if (input == ' ') {
  63. jump();
  64. } else if (input == 'q') {
  65. break;
  66. }
  67. }
  68. update();
  69. Sleep(50);
  70. }
  71.  
  72. return 0;
  73. }
  74.  
Success #stdin #stdout 0.02s 26160KB
stdin
Standard input is empty
stdout
#include <stdio.h>
#include <conio.h>
#include <windows.h>

#define SCREEN_WIDTH 50
#define SCREEN_HEIGHT 20
#define DINO_POS 5

int dinoY = SCREEN_HEIGHT - 2;
int isJumping = 0;
int jumpHeight = 6;
int jumpProgress = 0;

void gotoxy(int x, int y) {
    COORD coord;
    coord.X = x;
    coord.Y = y;
    SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);
}

void drawDino() {
    gotoxy(DINO_POS, dinoY);
    printf("O");
}

void eraseDino() {
    gotoxy(DINO_POS, dinoY);
    printf(" ");
}

void jump() {
    if (!isJumping) {
        isJumping = 1;
        jumpProgress = jumpHeight;
    }
}

void update() {
    if (isJumping) {
        eraseDino();
        if (jumpProgress > 0) {
            dinoY--;
            jumpProgress--;
        } else {
            isJumping = 0;
        }
    } else if (dinoY < SCREEN_HEIGHT - 2) {
        eraseDino();
        dinoY++;
    }
    drawDino();
}

int main() {
    char input;
    system("cls");
    drawDino();
    
    while (1) {
        if (_kbhit()) {
            input = _getch();
            if (input == ' ') {
                jump();
            } else if (input == 'q') {
                break;
            }
        }
        update();
        Sleep(50);
    }
    
    return 0;
}