This commit is contained in:
2025-10-28 13:14:03 +01:00
commit 6bb476f53e
9 changed files with 335 additions and 0 deletions

15
fecha.hpp Normal file
View File

@@ -0,0 +1,15 @@
#pragma once
#include <iostream>
using namespace std;
class Fecha {
public:
Fecha();
bool leer();
void escribir();
bool es_igual(Fecha &f);
bool es_menor(Fecha &f);
private:
int d, m, a;
int h, min, s;
};