Triángulos

Anuncio
pitagoras.frm
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
03/05/2005 21:49
'-----------------------------------------------------------------------------'// Programa ..... Triángulos
'// Autor ........ Jesús P.M. (zttSoft.com)
'// Fecha ........ 28/03/2005 * Mod 28/04/2005
'-----------------------------------------------------------------------------Option Explicit
Private Sub cmdBorrar_Click()
Dim i As Byte
For i = 0 To 5
elementos(i).Enabled = True
elementos(i).Value = 0
txtIncognitas(i).Text = 0
txtIncognitas(i).Locked = True
txtIncognitas(i).ForeColor = &HFF&
txtIncognitas(i).BackColor = &HC0E0FF
Next
elementos(3).Enabled = False
elementos(3).Value = 1
txtIncognitas(3).Text = "90º"
txtIncognitas(3).Locked = True
txtIncognitas(3).BackColor = &HC0E0FF
elementos(0).SetFocus
End Sub
'-----------------------------------------------------------------------------Private Sub cmdCalcular_Click()
Dim menErr As String
Dim cosB As Double, cosC As Double
Dim senB As Double, senC As Double
Dim tanB As Double, tanC As Double
Dim x As Double, Pi As Double
Dim cat_a As Double, cat_b As Double, cat_c As Double
Dim ang_A As Double, ang_B As Double, ang_C As Double
On Error GoTo controlERROR:
Pi = 4 * Atn(1)
cat_a = CDbl(txtIncognitas(0))
cat_b = CDbl(txtIncognitas(1))
cat_c = CDbl(txtIncognitas(2))
ang_A = 90
ang_B = CDbl(txtIncognitas(4))
ang_C = CDbl(txtIncognitas(5))
'CASO I: HIPOTENUSA Y UN CATETO
'Caso a) Hipotenusa y el cateto b
If elementos(0).Value And elementos(1).Value
cat_c = Sqr(cat_a ^ 2 - cat_b ^ 2)
'
tanB = cat_b / cat_c
ang_B = Atn(tanB) * (180 / Pi)
'
ang_C = 90 - ang_B
'
txtIncognitas(2) = Round(cat_c, 1)
txtIncognitas(4) = Round(ang_B, 1)
txtIncognitas(5) = Round(ang_C, 1)
End If
'Caso b) Hipotenusa y el cateto c
If elementos(0).Value And elementos(2).Value
cat_b = Sqr(cat_a ^ 2 - cat_c ^ 2)
'
tanB = cat_b / cat_c
ang_B = Atn(tanB) * (180 / Pi)
'
ang_C = 90 - ang_B
'
txtIncognitas(1) = Round(cat_b, 1)
txtIncognitas(4) = Round(ang_B, 1)
txtIncognitas(5) = Round(ang_C, 1)
End If
Then
Cateto c
Angulo B
Angulo C
Then
Cateto b
Angulo B
Angulo C
'CASO II: LOS DOS CATETOS
If elementos(1).Value And elementos(2).Value Then
cat_a = Sqr(cat_b ^ 2 + cat_c ^ 2) ' Hipotenusa
tanB = cat_b / cat_c
ang_B = Atn(tanB) * (180 / Pi)
' Angulo B
ang_C = 90 - ang_B
' Angulo C
txtIncognitas(0) = Round(cat_a, 1)
txtIncognitas(4) = Round(ang_B, 1)
txtIncognitas(5) = Round(ang_C, 1)
Page 1 of 4
pitagoras.frm
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
03/05/2005 21:49
End If
'CASO III: HIPOTENUSA Y UN ÁNGULO
'Caso a) Hipotenusa y el angulo B
If elementos(0).Value And elementos(4).Value
ang_C = 90 - ang_B
cat_b = cat_a * Sin(ang_B * (Pi / 180))
cat_c = cat_a * Cos(ang_B * (Pi / 180))
Then
' Angulo C
' Cateto b
' Cateto c
txtIncognitas(1) = Round(cat_b, 1)
txtIncognitas(2) = Round(cat_c, 1)
txtIncognitas(5) = Round(ang_C, 1)
End If
'Caso b) Hipotenusa y el angulo C
If elementos(0).Value And elementos(5).Value
ang_B = 90 - ang_C
cat_c = cat_a * Sin(ang_C * (Pi / 180))
cat_b = cat_a * Cos(ang_C * (Pi / 180))
Then
' Angulo B
' Cateto c
' Cateto b
txtIncognitas(1) = Round(cat_b, 1)
txtIncognitas(2) = Round(cat_c, 1)
txtIncognitas(4) = Round(ang_B, 1)
End If
'CASO IV: UN CATETO Y UN ÁNGULO
'Caso a) Cateto b y angulo B
If elementos(1).Value And elementos(4).Value
cat_a = cat_b / Sin(ang_B * (Pi / 180))
cat_c = Sqr(cat_a ^ 2 - cat_b ^ 2)
ang_C = 90 - ang_B
Then
' Hipotenusa
' Cateto c
' Ángulo C
txtIncognitas(0) = Round(cat_a, 1)
txtIncognitas(2) = Round(cat_c, 1)
txtIncognitas(5) = Round(ang_C, 1)
End If
'Caso b) Cateto b y angulo C
If elementos(1).Value And elementos(5).Value
cat_a = cat_b / Cos(ang_C * (Pi / 180))
cat_c = Sqr(cat_a ^ 2 - cat_b ^ 2)
ang_B = 90 - ang_C
Then
' Hipotenusa
' Cateto c
' Ángulo B
txtIncognitas(0) = Round(cat_a, 1)
txtIncognitas(2) = Round(cat_c, 1)
txtIncognitas(4) = Round(ang_B, 1)
End If
'Caso c) Cateto c y angulo B
If elementos(2).Value And elementos(4).Value
cat_a = cat_c / Cos(ang_B * (Pi / 180))
cat_b = Sqr(cat_a ^ 2 - cat_c ^ 2)
ang_C = 90 - ang_B
Then
' Hipotenusa
' Cateto c
' Ángulo B
txtIncognitas(0) = Round(cat_a, 1)
txtIncognitas(1) = Round(cat_b, 1)
txtIncognitas(5) = Round(ang_C, 1)
End If
'Caso d) Cateto c y angulo C
If elementos(2).Value And elementos(5).Value
cat_a = cat_c / Sin(ang_C * (Pi / 180))
cat_b = Sqr(cat_a ^ 2 - cat_c ^ 2)
ang_B = 90 - ang_C
Then
' Hipotenusa
' Cateto c
' Ángulo B
txtIncognitas(0) = Round(cat_a, 1)
txtIncognitas(1) = Round(cat_b, 1)
txtIncognitas(4) = Round(ang_B, 1)
End If
Exit Sub
controlERROR:
menErr = Err.Description & ": Error " & Str(Err.Number) & vbCrLf _
& "Comprobar que:" & vbCrLf _
& "- Los catetos son menores que la hipotenusa" & vbCrLf _
& "- Un lado es menor que la suma de los otros dos" & vbCrLf _
& "- Un lado es mayor que la diferencia de los otros dos"
Page 2 of 4
pitagoras.frm
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
03/05/2005 21:49
MsgBox menErr, vbCritical, "¡ERROR!"
End Sub
'-----------------------------------------------------------------------------Private Sub cmdSalir_Click()
End
End Sub
'-----------------------------------------------------------------------------Private Sub elementos_Click(Index As Integer)
Dim i As Byte
Dim contador As Byte
contador = 0
txtIncognitas(Index).Locked = False
txtIncognitas(Index).ForeColor = &H0&
txtIncognitas(Index).BackColor = &H80000005
txtIncognitas(Index).SetFocus
For i = 0 To 5
If elementos(i).Value Then
contador = contador + 1
End If
Next
If contador > 2 Then
For i = 0 To 5
If Not (elementos(i).Value) Then
elementos(i).Enabled = False
txtIncognitas(Index).Locked = False
End If
Next
End If
End Sub
'-----------------------------------------------------------------------------Private Sub Form_Activate()
Call cmdBorrar_Click
End Sub
'-----------------------------------------------------------------------------Private Sub txtIncognitas_GotFocus(Index As Integer)
txtIncognitas(Index).SelStart = 0
txtIncognitas(Index).SelLength = Len(txtIncognitas(Index))
End Sub
'-----------------------------------------------------------------------------Private Sub txtIncognitas_KeyPress(Index As Integer, KeyAscii As Integer)
If KeyAscii < 44 Or KeyAscii > 57 Then
If Not (KeyAscii = 8) Then
KeyAscii = 0
Beep
End If
Else
If KeyAscii = 46 Then
KeyAscii = 44
End If
If KeyAscii = 45 Or KeyAscii = 47 Then
KeyAscii = 0
Beep
End If
End If
End Sub
'-----------------------------------------------------------------------------Public Function A_GradosMinutos(angulo As Double) As String
Dim grados, minutos, segundos As Double
grados = Int(angulo)
minutos = Round((angulo - Int(angulo)) * 60, 0)
'
segundos = ((x - Int(x)) * 60) - minutos
'
A_GradosMinutos = Str(grados) & "º " + Str(minutos) & "' " + Str(segundos) & "''"
A_GradosMinutos = Str(grados) & "º " + Str(minutos) & "'"
End Function
'-----------------------------------------------------------------------------Private Sub txtIncognitas_LostFocus(Index As Integer)
If Index = 4 Or Index = 5 Then
If CDbl(txtIncognitas(Index).Text) >= 90 Then
MsgBox "El ángulo no puede ser igual o mayor que 90º", 16, "¡ERROR!"
End If
End If
End Sub
Page 3 of 4
pitagoras.frm
229
230
03/05/2005 21:49
'-----------------------------------------------------------------------------'---------------------- FIN ----------------------------------------------
Page 4 of 4
Descargar