以下是使用C語(yǔ)言實(shí)現(xiàn)簡(jiǎn)單彈跳小球的代碼:
#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坐標(biāo)
int y = HEIGHT / 2; // 小球的初始Y坐標(biāo)
int dx = 1; // 小球在X軸上的移動(dòng)速度
int dy = 1; // 小球在Y軸上的移動(dòng)速度
while (1) {
// 清屏
system("cls");
// 移動(dòng)小球
x += dx;
y += dy;
// 檢測(cè)小球是否碰到邊界
if (x <= 0 || x >= WIDTH) {
dx = -dx; // 改變小球在X軸上的移動(dòng)方向
}
if (y <= 0 || y >= HEIGHT) {
dy = -dy; // 改變小球在Y軸上的移動(dòng)方向
}
// 輸出小球
gotoxy(x, y);
printf("O");
// 延時(shí)
Sleep(50);
}
return 0;
}
在Windows下運(yùn)行此程序,會(huì)顯示一個(gè)小球在命令行窗口中上下左右移動(dòng)的效果。