算法初步题 求秒
问题描述:
算法初步题 求秒
一个球从100M高度*落下,每次落地后反弹回原来高度的一半,再落下.编写程序,求当它第10次找地时.
(1)向下的运动共经过多少米?
(2)第10次着地后反弹多高?
(3)全程共经过多少米?
要编写程序的,我当时高中没有这块内容,邻居来问我全然不知,
答
我用c++实现的#includeusing std::cout;using std::endl;class Freefall{public:Freefall(double x=0,int y=0):height(x),time(y){}void get_result();void view();private:double height;int time;};void Freefall:...