开发者

C/Objective-C read and get last digit of integer?

How can i get the last digit of an integer (or NSInteger) outputte开发者_如何学运维d to integer?

example:

int time = CFAbsoluteGetCurrent();
int lastDigit;


Use modulo:

int lastDigit = time % 10;
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜