首页 > 编程语言 > 详细

弹跳小球C语言

时间:2021-05-15 20:16:16      阅读:32      评论:0      收藏:0      [点我收藏+]
 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语言

原文:https://www.cnblogs.com/2015-16/p/14772228.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!