午夜稻草人

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2017年7月27日

摘要: #include #include using namespace std; int main() { clock_t t1 = clock(); for (int i = 0; i < 100000000; i++); clock_t t2= clock(); cout << "time " << t2 - t1 << endl; } 阅读全文
posted @ 2017-07-27 17:03 午夜稻草人 阅读(143) 评论(0) 推荐(0) 编辑