Claudia, miembro de este gran equipo, nos hizo el favor de crear esta crónica ya que controla a la perfección este tema.
Ejemplo 1: obtener la fecha actual en C++
#include #include intmain()
std::time_t t = std::time(0);// get time now
std::tm* now = std::localtime(&t);
std::cout <<(now->tm_year +1900)<<'-'<<(now->tm_mon +1)<<'-'<< now->tm_mday
<<"n";
Ejemplo 2: 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 3: c++ obtener la fecha del sistema
#include #include #include
time_t t =time(0);// get time nowstructtm* now =localtime(& t );
ostringstream osTime;
osTime <<(now->tm_year +1900)<<(now->tm_mon +1)<<
now->tm_mday <<"n";
cout << osTime.str();
Comentarios y calificaciones
Si te sientes a gusto, tienes la opción de dejar un escrito acerca de qué le añadirías a esta división.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)