码迷,mamicode.com
首页 > 其他好文 > 详细

1实现弹跳小球

时间:2018-01-23 00:58:04      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:int   gpo   速度   div   空格   lib   空行   +=   velocity   

#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实现弹跳小球

标签:int   gpo   速度   div   空格   lib   空行   +=   velocity   

原文地址:https://www.cnblogs.com/leosirius/p/8331480.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!