double x;
double y;
double z=x%y;
对于以上代码
z(如果不为零)的符号与 x 的符号相同。
z 的绝对值是 |x| - n * |y| 得出的值,其中 n 是小于或等于 |x| / |y| 的最大可能整数,|x| 和 |y| 分别是 x 和 y 的绝对值。
代码示例:
using System;public class Program
{public static void Main(){Console.WriteLine(-5.2f % 2.0f); // output: -1.2Console.WriteLine(5.9 % 3.1); // output: 2.8Console.WriteLine(-5.9 % 3.1); // output: -2.8Console.WriteLine(-5.9 % -3.1); // output: -2.8Console.WriteLine(5.9 % -3.1); // output: 2.8}
}
运行结果:
-1.2
2.8
-2.8
-2.8
2.8