题解 | #删除字符串中出现次数最少的字符#
求小球落地5次后所经历的路程和第5次反弹的高度
http://www.nowcoder.com/practice/2f6f9339d151410583459847ecc98446
C++简介代码
#include<iostream> using namespace std; int main() { double heght=0,lon=0; cin>>heght; double index=2; for(int i=1;i<=5;++i) { index=index/2; } lon=2*(2-index)*heght-heght; cout<<lon<<endl; cout<<(heght*index)/2; return 0; }