Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
整数除算()を0.25で除算しようとしていますが、VBはゼロ除算を試みたと言っています。また、(1/4)で除算しようとしました。
これは私のスニペットです
AmountLeft = Remainder \ 0.25 lblQuartersAmount.Text = AmountLeft
非整数による整数除算はできません。後で切り捨ててキャストするだけです。
AmountLeft = CInt(Math.Truncate(Remainder / 0.25))
そして、何が問題になってい* 4ますか?=)
* 4