关于time函数返回值的求余问题
#include <stdio.h>#include <time.h>
#include <stdlib.h>
int main()
{
time_t seconds;
seconds = time(NULL);
//进行三次求余,但是我很纳闷为什么求余的除数越大,返回值也越大,不理解
printf("%d\n",seconds % 10);
printf("%d\n",seconds % 100);
printf("%d\n",seconds % 1000);
return 0;
} 余数指整数除法中被除数未被除尽部分,且余数的取值范围为0到除数之间(不包括除数)的整数
数学里的求余计算。。。
页:
[1]