Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Corpos em queda livre com v0 diferente de zero e theta0=0
- // Dada a distância percorrida em x, qual a altura em que o corpo foi lançado?
- // y=y0+(tg(theta0)*x)-g*x*x/(2*pow(v0,2))
- #include <stdio.h>
- #include <math.h>
- #define g 9.8
- #define y0 20
- #define v0 5
- int main(void)
- {
- float tv,x,xmax;
- float y=y0;
- tv=sqrt(2*y0/g);
- xmax=v0*tv;
- printf("x(m)\t y(m)\n");
- for (x=0;x<=xmax;x+=0.5)
- {
- y=y0-g*x*x/2./powf(v0,2); // powf = pow pra float
- printf("%.2f\t %f\n",x,y);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement