#include "tadhora.h"
#include <iostream>
usingnamespace std;
void horacero (thora &h1) {
h1.horas = 0;
h1.minutos = 0;
h1.segundos = 0;
}
void mostrarhora (thora h1) {
if (h1.horas <10)
cout<<"0"<<h1.horas;
else
cout <<h1.horas;
cout << ":";
if (h1.minutos <10)
cout<<"0"<<h1.minutos;
else
cout <<h1.minutos;
cout << ":";
if (h1.segundos <10)
cout<<"0"<<h1.segundos;
else
cout <<h1.segundos;
}
void ponerenhora (int h, int m, int s, thora &h1) {
h1.horas = h;
h1.minutos = m;
h1.segundos = s;
}
void separarhora (thora h1, int &h, int &m, int &s) {
h = h1.horas;
m = h1.minutos;
s = h1.segundos;
cout << h << endl;
cout << m << endl;
cout << s << endl;
}
void convertir (int segs, thora &h1) {
if (segs < 60){
h1.segundos = segs;
}
else{
if (segs < 3600){
h1.minutos = segs / 60;
h1.segundos = segs % 60;
}
else{
if (segs < 86400){
h1.horas = segs / 3600;
h1.minutos = (segs % 3600) / 60;
h1.segundos = (segs % 3600) % 60;
}
else{
h1.horas = 0;
h1.minutos = 0;
h1.segundos = 0;
}
}
}
}
void masunsegundo (thora &h1) {
int i;
i = 1;
while (i <= 86400){
if (i < 60){
h1.segundos = i;
}
else{
if (i < 3600){
h1.minutos = i / 60;
h1.segundos = i % 60;
}
else{
if (i < 86400){
h1.horas = i / 3600;
h1.minutos = (i % 3600) / 60;
h1.segundos = (i % 3600) % 60;
}
else{
h1.horas = 0;
h1.minutos = 0;
h1.segundos = 0;
i = 0;
}
}
}
i = i + 1;
}
}
bool iguales (thora h1, thora h2) {
if (h1.horas == h2.horas && h1.minutos == h2.minutos && h1.segundos == h2.segundos){
returntrue;
}
else{
returnfalse;
}
}
bool mayorque (thora h1, thora h2) {
bool band;
band = false;
if (h1.horas > h2.horas){
band = true;
}
else{
if (h1.horas == h2.horas){
if (h1.minutos > h2.minutos){
band = true;
}
else{
if (h1.minutos == h2.minutos){
if (h1.segundos > h2.segundos){
band = true;
}
}
}
}
}
return band;
}
int diferencia (thora h1, thora h2) {
return ((h1.horas-h2.horas)*3600)+((h1.minutos-h2.minutos)*60)+(h1.segundos-h2.segundos);
}
void asignar (thora &h1, thora h2) {
h2.horas = h1.horas;
h2.minutos = h1.minutos;
h2.segundos = h1.segundos;
}
We have an error related to the main and we don't know where we have to put it, we don't need more mods but it stills says that needs a main, can anyone help us, please?