首页 > 代码库 > 问题 1019: C语言程序设计教程(第三版)课后习题6.9
问题 1019: C语言程序设计教程(第三版)课后习题6.9
/******************************************************************** @file Main.cpp @date 2017-05-12 23:18:28 @author Zoro_Tiger @brief 问题 1019: C语言程序设计教程(第三版)课后习题6.9 http://www.dotcpp.com/oj/problem1019.html ********************************************************************/ #include <cstdio> #include <cmath> #define TEST #undef TEST int main(int argc, const char* argv[]) { #ifdef TEST freopen("in.txt", "r", stdin); freopen("out.txt", "w", stdout); #endif int height = 0, times = 0; while (scanf("%d%d", &height, ×) != EOF) { double last_height = height / static_cast<double>(pow(2.0, times)); //! (a/(b^times)) double temp_height = static_cast<double>(height); double distance = temp_height; for (int i = 1; i < times; ++i) //!模拟落下弹起的过程 { temp_height /= 2; distance += (temp_height * 2); } printf("%.2lf %.2lf\n", last_height, distance); } return 0; }
问题 1019: C语言程序设计教程(第三版)课后习题6.9
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。