由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - has no experience with c++, what's the logic behind the following lines? Thanks!!
相关主题
Perl: How to return 2 dimention array pls ?问个c调用fortran函数的问题
问个数组地址的问题code swarm (video)
What's the algorithm behind Summlyinterview questions
有没有static return type和static as function arguement?thread on logical processor
关于 exception 的一个问题C++ Q03:
public and protected member in private inherit在子函数内开内存,返回主函数指针然后释放空间是不是很糟糕的(转载)
也问一下面试题:怎么判断计算机是不是连上intenet?C++ software engineer 3 years expectation
一个函数指针的问题问个matlab的表达式
相关话题的讨论汇总
话题: vp话题: pow话题: lines话题: logic话题: behind
进入Programming版参与讨论
1 (共1页)
c*****s
发帖数: 620
1
double vs = (vp < 4250.0) ?
(vp - 1360.0) / 1.16 :
785.8 - 1.2344*vp + 794.9 * pow(vp/1000.0,2)
- 123.8 * pow(vp/1000.0,3) + 6.4 * pow(vp/1000.0,4);
Thanks!!
t****t
发帖数: 6806
2
就是字面上的意思

【在 c*****s 的大作中提到】
: double vs = (vp < 4250.0) ?
: (vp - 1360.0) / 1.16 :
: 785.8 - 1.2344*vp + 794.9 * pow(vp/1000.0,2)
: - 123.8 * pow(vp/1000.0,3) + 6.4 * pow(vp/1000.0,4);
: Thanks!!

P********e
发帖数: 2610
3
ternary opration啊
double vs;
if (vp < 4250.0)
vs = (vp - 1360.0) / 1.16 ;
else
vs = 785.8 - 1.2344*vp + 794.9 * pow(vp/1000.0,2) - 123.8 * pow(vp/1000.
0,3) + 6.4 * pow(vp/1000.0,4);

【在 c*****s 的大作中提到】
: double vs = (vp < 4250.0) ?
: (vp - 1360.0) / 1.16 :
: 785.8 - 1.2344*vp + 794.9 * pow(vp/1000.0,2)
: - 123.8 * pow(vp/1000.0,3) + 6.4 * pow(vp/1000.0,4);
: Thanks!!

1 (共1页)
进入Programming版参与讨论
相关主题
问个matlab的表达式关于 exception 的一个问题
logical operator short circuitpublic and protected member in private inherit
神奇的逻辑关系也问一下面试题:怎么判断计算机是不是连上intenet?
请教关于GitHub一个函数指针的问题
Perl: How to return 2 dimention array pls ?问个c调用fortran函数的问题
问个数组地址的问题code swarm (video)
What's the algorithm behind Summlyinterview questions
有没有static return type和static as function arguement?thread on logical processor
相关话题的讨论汇总
话题: vp话题: pow话题: lines话题: logic话题: behind