#include<stdio.h>#include<time.h>int main(){ time_t t; t=time(0)/60/60/24; printf("%ld 天\n",t); return 0;}