マガジンのカバー画像

c言語ゲームプログラムサンプル集

5
運営しているクリエイター

#paddleY

テニスゲーム

#include <stdio.h> #include <stdlib.h> #include <conio.h> #include <windows.h>
#define WIDTH 50 #define HEIGHT 25

int ballX, ballY, ballDirX, ballDirY, paddleY;
char screen[WIDTH][HEIGHT];

void ini

もっとみる