APUNTES DE FUNDAMENTOS DE PROGRAMACIÓN.
Enviado por Maribel Leyva • 6 de Abril de 2016 • Apuntes • 2.166 Palabras (9 Páginas) • 267 Visitas
FUNDAMENTOS DE PROGRAMACION
Problema 1
Nombre del proyecto: Suma.vbp
Nombre del formulario: FrmSuma.frm
Leer dos números enteros e imprimir el resultado de la suma de dichos números.
Si x=5 y =20 el resultado es: 25
Si x=12 y=12 el resultado es: 24
Si x=10 y =2 es resultado es: 12
[pic 1]
Propiedades:
Objeto | Propiedad | Valor |
Form1 | Nombre | FrmSuma |
Caption | Suma de dos números | |
Label1 | Nombre | LblX |
Alignment | 1-Right Justify | |
Caption | X | |
Label2 | Nombre | LblY |
Alignment | 1-Right Justify | |
Caption | Y | |
Label3 | Nombre | LblL |
Alignment | 1-Right Justify | |
Caption | La suma es | |
Text1 | Nombre | TxtX |
Text | ||
TabIndex | 0 | |
Text2 | Nombre | TxtY |
Text | ||
TabIndex | 1 | |
Picture1 | Nombre | PicResultado |
Command1 | Nombre | CmdSuma |
Caption | Suma | |
TabIndex | 2 | |
Command2 | Nombre | CmdSalir |
Caption | Salir | |
TabIndex | 3 |
Código:
Private Sub CmdSuma_Click ()
Rem declaración de variables
Dim x as integer
Dim y as integer
Rem lectura de los números
Rem la función val convierte texto a números
x=Val (TxtX.Text)
y=Val (TxtY.Text)
Rem borrar PicResultado
PicResultado.Cls
Rem establecer foco en TxtX
TxtX.SetFocus
Rem hacer el cálculo
PicResultado.Print x + y
End sub
Private Sub CmdSalir_Click()
End
End sub
Problema 2
Nombre del proyecto: Trabajo.vbp
Nombre del formulario: FrmTrab.frm
Calcular el trabajo realizado por una fuerza en una distancia determinada.
Imprimir el resultado
Si f = 13
Si d = 8
T = f * d
El resultado es 104
[pic 2]
Propiedades:
Objeto | Propiedad | Valor |
Form1 | Nombre | FrmTrab |
Caption | Calcular Trabajo | |
Label1 | Nombre | LblF |
Alignment | 1-Right Justify | |
Caption | Fuerza | |
Label2 | Nombre | LblD |
Alignment | 1-Right Justify | |
Caption | Distancia | |
Label3 | Nombre | LblL |
Alignment | 1-Right Justify | |
Caption | Trabajo | |
Text1 | Nombre | TxtF |
Text | ||
TabIndex | 0 | |
Text2 | Nombre | TxtD |
Text | ||
TabIndex | 1 | |
Picture1 | Nombre | PicResultado |
Command1 | Nombre | CmdCalcular |
Caption | Calcular | |
TabIndex | 2 | |
Command2 | Nombre | CmdSalir |
Caption | Salir | |
TabIndex | 3 |
...