求助···模拟简单的爆炸
爆炸可看作是大量粒子在同一瞬间从同一地点作的随机抛体运动#include "math.h"
#include "bios.h“
#include “graphics.h”
#define PI 3.1415926
main()
{
float x,y,x0,y0,v0,t,p;
int gdrive=DETECT,gmode;
initgraph(&gdrive,&gmode,“e:\\tc\\bgi");
x0=300;y0=240;p=45;v0=70;t=0;
setbkcolor(2);
setfillstyle(1,1);
do
{
t=t+0.01;
x=x0+v0*cos(p*PI/180)*t;
y=y0-v0*sin(p*PI/180)*t+0.5*10*t*t;
fillellipse(x,y,2,2);
delay(1000);
}while(!kbhit());
closegraph();
}
抛体就是这样,再就不知道怎么办了