Recuerda que en las ciencias cualquier problema casi siempere puede tener diferentes resoluciones, así que aquí te compartimos lo más óptimo y mejor.
Ejemplo 1: cómo obtener la hora actual en C++
//Simplest way to add time using ctime#include
time_t tt;time(&tt );
tm TM =*localtime(&tt );//Must add 1 to month and 1900 to the yearint month=TM.tm_mon+1;int day=TM.tm_mday;int year=TM.tm_year+1900;
Ejemplo 2: c++ imprime la hora actual
// Current date/time based on current system
time_t now =time(0);// Convert now to tm struct for local timezone
tm* localtm =localtime(&now);
cout <<"The local date and time is: "<<asctime(localtm)<< endl;// Convert now to tm struct for UTC
tm* gmtm =gmtime(&now);if(gmtm !=NULL)
cout <<"The UTC date and time is: "<<asctime(gmtm)<< endl;else
cerr <<"Failed to get the UTC date and time"<< endl;return EXIT_FAILURE;
Acuérdate de que te permitimos comentar si encontraste tu escollo .
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)