/*Calculates the maxiumum height of a bullet that leaves a gun at 960 feet per second. Also stores and cout's all the numbers*/ #include #include #include #include #include #include #include #include #include #include int main() { clrscr(); apvector height(60); for(int i=0; i<60; i++) { height[i]=(960*i)-(16*i*i); cout<max){ max=height[i]; maxtime=i; } } cout<<"The max height was "<