以下是使用C語言實現簡單彈跳小球的代碼:
#include <stdio.h>
#include <stdlib.h>
#include <Windows.h>
#define WIDTH 70
#define HEIGHT 20
void gotoxy(int x, int y) {
COORD pos;
HANDLE hOutput;
pos.X = x;
pos.Y = y;
hOutput = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleCursorPosition(hOutput, pos);
}
int main() {
int x = WIDTH / 2; // 小球的初始X坐標
int y = HEIGHT / 2; // 小球的初始Y坐標
int dx = 1; // 小球在X軸上的移動速度
int dy = 1; // 小球在Y軸上的移動速度
while (1) {
// 清屏
system("cls");
// 移動小球
x += dx;
y += dy;
// 檢測小球是否碰到邊界
if (x <= 0 || x >= WIDTH) {
dx = -dx; // 改變小球在X軸上的移動方向
}
if (y <= 0 || y >= HEIGHT) {
dy = -dy; // 改變小球在Y軸上的移動方向
}
// 輸出小球
gotoxy(x, y);
printf("O");
// 延時
Sleep(50);
}
return 0;
}
在Windows下運行此程序,會顯示一個小球在命令行窗口中上下左右移動的效果。