vs打印函数运行时间

#include<stdio.h> #include<time.h> #include<iostream> using namespace std; clock_t start, stop; double duration; void ls(int n); int main() { start = clock(); ls(10); stop = clock(); duration = ((doub
相关文章
相关标签/搜索