C / Objective-C读取并获取整数的最后一位数?

时间:2010-12-30 02:50:26

标签: objective-c c integer nsinteger digit

如何将整数(或NSInteger)的最后一位数输出到整数?

示例:

int time = CFAbsoluteGetCurrent();
int lastDigit;

1 个答案:

答案 0 :(得分:41)

使用modulo

int lastDigit = time % 10;