#include<iostream>
#include<ctime>
using namespace std;
int main() {
clock_t start, end;
start = clock();
end= clock();
double endtime = (double)(end - start) / CLOCKS_PER_SEC;
cout << "Total time:" << endtime << "s" << endl;
}
转载请注明原文地址:https://ipadbbs.8miu.com/read-6901.html