C++编程题,求大神指教,实在是小白不会。已知速度和时间和加速度。框架也有了,但是真的不太会
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++编程题,求大神指教,实在是小白不会。已知速度和时间和加速度。框架也有了,但是真的不太会相关的知识,希望对你有一定的参考价值。
C++编程题,求大神指教,实在是小白不会。已知速度和时间和加速度。框架也有了,但是真的不太会求各位大佬救救孩子吧,悬赏再翻倍都可以
Firstly, you need bulid up two mathematical equations to calculate the velocity and the acceleration.
double calculate_velocity( double& t )return 1e-5*t*t*t - 0.00488*t*t + 0.75795*t + 181.3566;
double calculate_acceleration( double& v )
return 3.0 - 0.000062*v*v;
Secondly, you need to pay attention to the decmial point of your calculated result, which need to fix the length of double variable by
printf( "Velocity = %.3f m/s\\n", velocity );printf( "Acceleration = %.3f m/s^2\\n", acceleration );
If you fill in these two pieces of codes inside the original programme, the sample should looks like:
#include <stdio.h>#include <math.h>
double calculate_velocity( double& t )
return 1e-5*t*t*t - 0.00488*t*t + 0.75795*t + 181.3566;
double calculate_acceleration( double& v )
return 3.0 - 0.000062*v*v;
int main( void )
// Declare variables
double time;
double velocity;
double acceleration;
// Get time value from the keyboard
printf( "Enter new time value in seconds:\\n");
scanf( "%lf", &time );
// Compute velocity and acceleration
velocity = calculate_velocity( time );
acceleration = calculate_acceleration( velocity );
// Print velocity and acceleration
printf( "Velocity = %.3f m/s\\n", velocity );
printf( "Acceleration = %.3f m/s^2\\n", acceleration );
// Exit the program
return 0;
The generated result will look exactly as you expected as
参考技术A 这要解决问题一个字都懒的打,能解决吗 参考技术B 追问您好,可以再稍微详细点嘛,拜托了
我还可以再提一提那个什么悬赏,虽然我知道那并不是什么贵重的东西
但是拜托您了
追答还要怎么详细呢?
要填的内容,和填写的位置,以及程序运行的结果的截图,全都有了。
你还想要什么?
对不起
我现在的是这样的
出来的结果就是只有一个50
对不起这图片质量太垃圾了,我重新发过
追答不是“%If”不是大写的I,是小写的L,即%lf
你写错了。
还有最后图中的第8行也抄错了。
改成l还是没有结果啊,依旧只有一个50
追答第9行中多了一个空格。
参考技术C 来个大神吧,我也不会c++呀hbuild mui 开发的webapp 怎么实现切换选项卡,然后执行一次下拉刷新更新数据,求各位大神指教
hbuild mui 开发的webapp 怎么实现切换选项卡,然后执行一次下拉刷新更新数据,求各位大神指教
参考技术A 方法/步骤今天,写一个webapp,发现mui的底部导航选项卡只能实现div切换,我加链接没反应百度了一下,说的是mui用作手机web页面,在下拉刷新+tab滚动切换下,a标签的设置href,点击不会进行跳转心塞,总要想法解决吧boss才不会管你说什么呢干货//解决导航a标签不能跳转页面mui('body').on('tap','a',function()document.location.href=this.href;);本回答被提问者采纳以上是关于C++编程题,求大神指教,实在是小白不会。已知速度和时间和加速度。框架也有了,但是真的不太会的主要内容,如果未能解决你的问题,请参考以下文章
用c语言编程1000以内的“水仙花数”、并且结果偶数输出奇数不输出、求大神速度指教、拜托了🙏
使用eclipse进行断点调试进入断点的速度很慢,可能由哪些原因造成,求大神指教
c语言编程问题。。。这是一个作业。。实在不会写,求大神帮忙。。。