📅  最后修改于: 2022-03-11 14:44:57.004000             🧑  作者: Mango
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