标签: c#
我想用C#将5除以3。我可以使用什么算子来获得除以后的余数或模数?
答案 0 :(得分:49)
你可以这样做:
double answer = 5.0/3.0; int remainder = 5 % 3; int quotient = 5 / 3;