Saltar al contenido

obtener la fecha actual ejemplo de código c ++

Ejemplo 1: obtener la fecha actual en c ++

#include <ctime>
#include <iostream>

int main() {
    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: obtener la fecha del sistema de c ++

#include <string>
#include <sstream>
#include <iostream>

time_t t = time(0);   // get time now
struct tm * now = localtime( & t );

ostringstream osTime;
osTime << (now->tm_year + 1900) <<
   (now->tm_mon + 1) <<
   now->tm_mday <<
   "n";

cout << osTime.str();
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *