计算两个双精度浮点数a和b的相除的余数,a和b都是正数的。这里余数(r)的定义是:a = k * b + r,其中 k是整数, 0 <= r < b。
73.263 0.9973
0.4601
#include <iostream> #include <algorithm> #include <stdio.h> #include <string> #include <ctype.h> using namespace std; int main() { double r1, r2, R; scanf("%lf%lf", &r1, &r2); int k = r1/r2; R = r1 - k*r2; printf("%g\n", R); return 0; }
下面是我写的错误的,但是不知道哪里错了
#include <iostream> #include <algorithm> #include <stdio.h> #include <string> #include <ctype.h> using namespace std; int main() { double r1, r2, R; scanf("%lf%lf", &r1, &r2); // R = r1%r2; while (r1 >= 0.0 && r1 > r2){ r1 = r1 - r2; } printf("%g", r1); return 0; }
原文:http://www.cnblogs.com/QingHuan/p/7020497.html