簡単な答えは、金額の1000の数である商が何であれ、その数を1000で割ることです。次に、余りを100で割ると、商は100の数になります。そして、余りを再び10で割ると、商は10の数になります
このようなもの:
quotient = 3660 / 1000; //This will give you 3
remainder = 3660 % 1000; //This will give you 660
次に、
quotient1 = remainder/ 100; //This will give you 6
remainder1 = remainder % 100; //This will give you 60
そして最後に
quotient2 = remainder1 / 10; //This will give you 6