摘要: #include <time.h> #include <stdio.h> int main() { time_t start ,end ; double cost; time(&start); sleep(1); time(&end); cost=difftime(end,start); print 阅读全文
posted @ 2017-10-25 22:37 丁培飞 阅读(6416) 评论(0) 推荐(0) 编辑
摘要: [cpp] view plain copy print? #include <stdio.h> #include <stdlib.h> #include <string.h> #include <malloc.h> int main(int argc,char *argv[]) { const ch 阅读全文
posted @ 2017-10-25 10:29 丁培飞 阅读(9601) 评论(0) 推荐(0) 编辑