请大牛们帮我看一下cre/ERT2 的问题!# Biology - 生物学
h*g
1 楼
template R function(N value);
Given the function template in the code sample above, which one of the
following code fragments correctly calls this function from your code?
A.
double d = 6.9;
int i = function(d);
B.
double d = 6.9;
int i = function<>(d);
C.
int i = 5;
double d = templatefunction(i);
D.
double d = 6.9;
int i = function(d);
E.
int i = 5;
double d =function(i);
a和d 感觉都对呀?
Given the function template in the code sample above, which one of the
following code fragments correctly calls this function from your code?
A.
double d = 6.9;
int i = function(d);
B.
double d = 6.9;
int i = function<>(d);
C.
int i = 5;
double d = template
D.
double d = 6.9;
int i = function
E.
int i = 5;
double d =
a和d 感觉都对呀?