Bucle For en Visual Basic.NET
Ejercicios de Bucle FOR en Visual Basic.NET
1. Leer un rango de números enteros e imprimir x pantalla los pares encontrados
Dim vi, vf As Integer
Dim x As Integer
REM LEER
Console.Write("Ingrese Rango Inicial: ")
vi = Console.ReadLine
Console.Write("Ingrese Rango Final: ")
vf = Console.ReadLine
REM PROCESO
For x = vi To vf
If (x Mod 2) = 0 Then
Console.WriteLine(x)
End If
Next
Console.ReadLine()
2. Leer un rango de números enteros e imprimir x pantalla los impares encontrados
3. Leer un rango de números enteros e imprimir x pantalla los múltiplos de 5
Dim vi, vf As Integer
Dim x As Integer
REM LEER
Console.Write("Ingrese Rango Inicial: ")
vi = Console.ReadLine
Console.Write("Ingrese Rango Final: ")
vf = Console.ReadLine
REM PROCESO
For x = vi To vf
If (x Mod 5) = 0 Then
Console.WriteLine(x)
End If
Next
Console.ReadLine()
1. Leer un rango de números enteros e imprimir x pantalla los pares encontrados
Dim vi, vf As Integer
Dim x As Integer
REM LEER
Console.Write("Ingrese Rango Inicial: ")
vi = Console.ReadLine
Console.Write("Ingrese Rango Final: ")
vf = Console.ReadLine
REM PROCESO
For x = vi To vf
If (x Mod 2) = 0 Then
Console.WriteLine(x)
End If
Next
Console.ReadLine()
2. Leer un rango de números enteros e imprimir x pantalla los impares encontrados
Dim vi, vf As Integer
Dim x As Integer
REM LEER
Console.Write("Ingrese Rango Inicial: ")
vi = Console.ReadLine
Console.Write("Ingrese Rango Final: ")
vf = Console.ReadLine
REM PROCESO
For x = vi To vf
If (x Mod 2) <> 0 Then
Console.WriteLine(x)
End If
Next
Console.ReadLine()
3. Leer un rango de números enteros e imprimir x pantalla los múltiplos de 5
Dim vi, vf As Integer
Dim x As Integer
REM LEER
Console.Write("Ingrese Rango Inicial: ")
vi = Console.ReadLine
Console.Write("Ingrese Rango Final: ")
vf = Console.ReadLine
REM PROCESO
For x = vi To vf
If (x Mod 5) = 0 Then
Console.WriteLine(x)
End If
Next
Console.ReadLine()
Comentarios