#include<bits/stdc++.h>
using namespace std;
int main(){
std::ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
cout<<"Hello World";
return 0;
}
Hello World程序示例在以下位置的执行时间:
开发C ++:
- 第一次跑:10.17秒
- 第一次运行后:0.02035 s。
CMD:
- 全部运行:0.02 s。
Dev C ++版本:5.11
devcpp.exe进程优先级:高
编译器:TDM-GCC 4.9.2 64位版本
默认标志:-std = c ++ 14
系统配置:
如何解决第一次运行的较长执行时间?