弹跳小球C语言

Posted 夜_归_人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了弹跳小球C语言相关的知识,希望对你有一定的参考价值。

 1 #include <iostream>
 2 #include <cstdlib>
 3 #include <Windows.h>
 4 using namespace std;
 5 
 6 int main()
 7 {
 8     int i, j;
 9     int x = 0;
10     int y = 5;
11     int velocity_x = 1;
12     int velocity_y = 1;
13     int left = 0;
14     int right = 20;
15     int top = 0;
16     int bottom = 10;
17 
18     while(1){
19         
20         x = x + velocity_x;
21         y = y + velocity_y;
22         system("cls");
23 
24         for (i = 0; i < x; i++)
25             cout << endl;
26         for (j = 0; j < y; j++)
27             printf(" ");
28         printf("o\\n");
29 
30         Sleep(50);
31         if (x == top || x == bottom) {
32             velocity_x *= -1;
33             printf("\\a");
34         }
35 
36         if (y == left || y == right) {
37             velocity_y *= -1;
38             printf("\\a");
39         }
40     }
41     return 0;
42 }

最基础的实现,小球撞到墙壁即反弹,触碰会发出声音,仅此而已。

时隔一年,又看到了这份代码,就发出来吧。

2021-05-15

以上是关于弹跳小球C语言的主要内容,如果未能解决你的问题,请参考以下文章

如何利用CSS3动画实现弹跳效果

简述利用3DMAX制作小球弹跳的步骤,最好详细一点,专业一点,谢谢

用手机上下左右摆让小球滚动或弹跳吃东西变大的游戏

Processing小游戏制作 01-弹跳小球

Processing小游戏制作 01-弹跳小球

Processing小游戏制作 01-弹跳小球