Datos personales

martes, 24 de marzo de 2015

programa de small-basic: OPERACIÓN: (A - B) / C VALIDAR EL VALOR DE C NO SEA CERO.

2. DADOS LOS DATOS A, B, C, QUE DEBEN SER NÚMEROS ENTEROS, SE CALCULE EL RESULTADO DE LA SIGUIENTE OPERACIÓN: (A - B) / C
VALIDAR EL VALOR DE C NO SEA CERO



TextWindow.WriteLine("ingrese un valor")
s= TextWindow.ReadNumber()
TextWindow.WriteLine("ingresa el segundo valor")
g= TextWindow.ReadNumber()
dinosaurio:
TextWindow.WriteLine("ingresa el tercer valor")
k= TextWindow.ReadNumber()
If k= 0 Then
  TextWindow.WriteLine("introduce un numero que no sea cero")
  Goto dinosaurio
Else
  TextWindow.WriteLine("El resultado de la operacion es : " + s*g/k)
  EndIf

No hay comentarios:

Publicar un comentario