C++获取当前系统时间,精确到毫秒

#include
#include
#include
using namespace std;
int main () 
{
	SYSTEMTIME lpsystime;
	GetLocalTime(&lpsystime);
	cout<

 

 

你可能感兴趣的:(C/C++)