Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
#include
using namespace std; int main() { cout << fmax(2.0, 0.25) << "\n"; cout << fmax(31.2f, 18.0f) << "\n"; cout << fmax(14, 22) << "\n"; cout << fmax(96, 2048) << "\n"; return 0; }
2
31.2
22
2048