QUICKNESS!!!!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
  #include "tadhora.h"
#include <iostream>

using namespace 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){
		return true;
	}
	else{
		return false;
	}
}
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?
I see no main() function.
All C/C++ programs must have a main() function.
Each program should have main() function which would be called at program startup.
Topic archived. No new replies allowed.