C++程序化/量化学习视频教程系列 第011节:C语言基本的逻辑判断语句【iff(cond,a,b)函数】
[mp4]http://mp4.qhlt.club/Cpp-Video/011.mp4[/mp4] 鼎元C++期货量化/程序化教程【IFF(cond1,A,B)函数计算方法及调用方法】:[url=http://www.qhlt.cn/thread-160353-1-1.html]http://www.qhlt.cn/thread-160353-1-1.html[/url];C++基础教程:[url]http://www.qhlt.cn/forum-998-1.html[/url]; VS中的程式码演示:[code]
#include <iostream>
using namespace std;
double iff(bool cond1, int a, int b)
{
int d = 0;
if(cond1)
{
d = a;
}
else
{
d = b;
}
return d;
}
int main()
{
cout << iff(3 > 5, 1, 2);
cout << endl;
}
[/code]
页:
[1]