
Module Module1
Sub Main()
Dim cant, tot_pag As Integer
Console.WriteLine("digite cantidad de llantas")
cant = Console.ReadLine()
If cant < 5 Then
tot_pag = cant * 800
Else
tot_pag = cant * 700
End If
Console.WriteLine("El total a pagar es:" & tot_pag)
Console.ReadLine()
End Sub
End Module
No hay comentarios:
Publicar un comentario