运行 ❯
获取
自己的
网站
×
更改方向
更改主题,深色/浅色
转到 Spaces
#include <iostream> #include <cmath> using namespace std; int main() { cout << remainder(11.0, 3.0) << "\n"; cout << remainder(16.0f, 4.0f) << "\n"; cout << remainder(31.0, 2.5) << "\n"; return 0; }
-1
0
1