0

对于我的问题,我需要弄清楚如何使模除法问题的其余部分继续到 Visual Basic 中的另一个计算中。这真的很难说,所以我将尝试使用一个例子:

用户输入 4500。4500 mod 1000 = 4 次,余数为 500。

现在我需要 500 来继续下一个计算。

500 模 100 = 5

然后输出可能为: Boxes of 1000: 4 Boxes of 100: 5

谁能解释我如何在 Visual Basic 中编写与此类似的问题?

4

1 回答 1

1
Dim dividend As Integer = 4500/1000         ' results to 4
Dim remainder As Integer = 4500 Mod 1000    ' results to 500
Dim subdividend As Integer = remainder/100  ' results to 5
于 2012-09-18T19:14:21.097 回答