int main()
}getsystemtime(¤ttime);
printf("time: %u/%u/%u %u:%u:%u:%u\n",
currenttime.wyear, currenttime.wmonth, currenttime.wday,
currenttime.whour, currenttime.wminute, currenttime.wsecond,
currenttime.wmilliseconds
);system("pause");
return 0;
}測試用例執**況:無論if內是否有內容,其執行時間大概都為220-260ms(本機),故該演算法的時間複雜度只與n(i的取值範圍)有關。
對於for語句內
語句較多的情況,本例不適用,只適用於交換兩個變數的值的情況。
c 獲取當前時間 毫秒 C 獲取系統時間
1 datetime 數字型 system.datetime currenttime new system.datetime 1.1 取當前年月日時分秒 currenttime system.datetime.now 1.2 取當前年 int 年 currenttime.year 1.3 取當前月 ...
C 時間操作(獲取毫秒級)
使用標準c語言的time函式,可以滿足一般性需要 include include int main void time t t time 0 char tmp 64 strftime tmp,sizeof tmp y m d x a 本年第 j天 z localtime t puts tmp ret...
Linux獲取毫秒級時間
linux獲取毫秒級時間 moakap 在軟體設計中經常會用到關於時間的處理,用來計算語句 函式的執行時間,這時就需要精確到毫秒甚至是微妙的時間。int gettimeofday struct timeval tv struct timezone tz int settimeofday const ...