I have this code:
var t = (timer2Seconds / 10).ToString()
When timer2Seconds is 100 then t is 100
When timer2Seconds is 99 then t is 9
Is there a way that I can make it round up so that:
When timer2Seconds is 99 then t is 10
When timer2Seconds is 91 then t is 10
When timer2Seconds is 90 then t is 9