以下属于目前农业银行面向对公客户自主理财产品的是()。
A.本利丰
B.汇利丰
C.稳得利系列
D.安心得利
参考答案:A, B, D
在电力电缆敷设中,电缆敷设方式应根据()等因素确定。
A.电压等级
B.初期投资
C.初始数量
D.最终投资
E.施工条件
有以下程序: #include <iostream> using namespace std; int f1(int x, int y) return x>y x:y; int f2(int x, int y) return x>y y:x; int main ( ) int a = 4,b = 3,c = 5,d,e,f;d = f1(a,b) ;d = f1(d,c) ;e = f2 (a,b) ;e = f2(e,c) ;f = a+b+c-d-e;cout<<d<<", "<<e<<", "<<f<<end1;return 0; 执行后的输出结果是 ( )。
A.3,4,5
B.5,3,4
C.5,4,3
D.3,5,4