Prostą odpowiedzią jest podzielenie liczby przez 1000, niezależnie od tego, jaki jest iloraz liczby 1000 w kwocie. Następnie podziel resztę przez 100, iloraz będzie liczbą 100. A potem ponownie podziel resztę przez 10, iloraz będzie liczbą dziesiątek
Coś takiego:
quotient = 3660 / 1000; //This will give you 3
remainder = 3660 % 1000; //This will give you 660
Następnie
quotient1 = remainder/ 100; //This will give you 6
remainder1 = remainder % 100; //This will give you 60
I wreszcie
quotient2 = remainder1 / 10; //This will give you 6