Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include <iostream> #include <cmath> using namespace std; int main() { cout << fmod(11.0, 3.0) << "\n"; cout << fmod(16.0f, 4.0f) << "\n"; cout << fmod(31.0, 2.5) << "\n"; return 0; }
2
0
1