If you can help by giving guide to write this using VB, I shall be very glad:
I want to get the quotient and a remainder when one number is divided by another one number, Can you please give/show me the Coding to this problem?
Hi, In vb, MOD is an operator to find Remainder Ex
Dim iRemainder As Integer iRemainder = 2008 MOD 10 'Here 8 is the Remainder
If you divide one number by another number you get quotient.
Hi selvaganapathy,
Thank you very much for your precious help.