Entradas

Mostrando entradas de agosto, 2014

Estructuras cíclicas o repetitivas II

Imagen
Table de multiplicar  Module  Module1      Sub  Main()          Dim  num, ope, tot  As   Integer          Console.WriteLine( "Ingrese numero a multiplicar" )          ope = Console.ReadLine         Console.WriteLine( "-----------------------" )          For  num = 1  To  12              'Console.WriteLine(num)             tot = num * ope             Console.WriteLine(num &  " * "  & ope &  " = "  & tot)              'Console.ReadLine()  ...