1实现弹跳小球

Posted LeoSirius

tags:

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

#include<stdio.h>
#include<stdlib.h>
#include<windows.h>

void main(){
    int i, j;
    int x = 0; 
    int y = 5;
    
    int velocity_x = 1;
    int velocity_y = 1;
    int left = 0;
    int right = 20;
    int top = 0;
    int bottom = 10;
    
    while(1){
        x += velocity_x;
        y += velocity_y;
        
        system("cls");            //清屏函数,在stdlib.h中
        for(i = 0; i < y; i++)    //输出小球前面的空行和空格    
            printf("\n");
        for(j = 0; j < x; j++)
            printf(" ");
        printf("o");            //输出小球
        printf("\n");
        Sleep(50);        //等待若干毫秒,控制小球弹跳的速度,windows.harderr
        
        if((y <= top) || (y >= bottom)){
            velocity_y = -velocity_y;
            printf("\a");        //碰到边界,实现响铃
        }
        if((x <= left) || (x >= right)){
            velocity_x = -velocity_x;
            printf("\a");
        }
    }
}

 

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

小球弹跳

webGlthreejs实现一个简单的动画-弹跳的小球

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

弹跳的小球(bouncingball.py)

笔记-2.带尾巴小球弹跳

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