※ 引述《spiderman007 (千里之外)》之銘言:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#ifdef _WIN32_
#include <windows.h>
#else
#include <unistd.h>
#define Sleep(a) usleep(a*1000)
#endif
int main(void){
time_t t1,t2; // typedef time_t long;
t1 = time(0);
Sleep(1234);
t2 = time(0);
printf("%ld secs\n",t2-t1);
gtc(stdin);
return 0;
}
--
~~於是,銀河的歷史又被海賊抹黑了好幾百頁。
咦?的歷史又被抹黑了好幾百頁!?
- A23203 -
BM4GRM Harlock WolfLord
★ <<上站通知>> -- 我來啦!
--
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#ifdef _WIN32_
#include <windows.h>
#else
#include <unistd.h>
#define Sleep(a) usleep(a*1000)
#endif
int main(void){
time_t t1,t2; // typedef time_t long;
t1 = time(0);
Sleep(1234);
t2 = time(0);
printf("%ld secs\n",t2-t1);
gtc(stdin);
return 0;
}
--
~~於是,銀河的歷史又被海賊抹黑了好幾百頁。
咦?的歷史又被抹黑了好幾百頁!?
- A23203 -
BM4GRM Harlock WolfLord
★ <<上站通知>> -- 我來啦!
--
All Comments