Question

• #3: Ballistic missile flight. User enter initial velocity (fps), angle (deg), time increment

(sec). Program displays table of time versus x (ft) and y (ft). Program should stop when

y<0 (missile hits the ground). After table is displayed, program should display the

maximum calculated height (y). Start table at t=0 seconds. Include appropriate output.

Hint use FOR loop: ex: for (time = 0; ??? ; time = time + incr) {.. }

Question image 1