#include <stdio.h> #include <time.h> int main(void) { time_t t1 = time(NULL); struct tm *nPtr = localtime(&t1); char *now = asctime(nPtr); printf(now); ...
確定! 回上一頁