📜  最大 int c++ 代码示例

📅  最后修改于: 2022-03-11 14:44:57.004000             🧑  作者: Mango

代码示例2
x = 1, y  = 2;
fmax(x , y);
//if you want to print it right away:
cout << fmax(x , y);
//if you want to store it:
int j = fmax(x, y);
cout << j;

//output 2