This commit is contained in:
2025-12-01 23:41:00 +01:00
parent 1c1e22b1df
commit 9bc260a750
14 changed files with 254 additions and 38 deletions

View File

@@ -1,5 +1,7 @@
#pragma once
#include <iostream>
#include <string>
#include <cstdio>
using namespace std;
class Fecha {
public:
@@ -8,6 +10,7 @@ class Fecha {
void escribir();
bool es_igual(Fecha &f);
bool es_menor(Fecha &f);
string conv();
private:
int d, m, a;
int h, min, s;