2012-06-26 74 views

回答

19

模是用來對整數,所以你的代碼工作做到以下

int remainingSeconds = (int)scratch % 60; 

如果要使用浮動模量使用FMOD

int remainingSeconds = fmod(scratch, 60); 

檢查答案在這裏How to make a modulo operation in objective-c/cocoa touch?

+0

謝謝YOUUUUU! !!!! – Piyo

+0

歡迎您:) –

相關問題