usingMaths.com
From Theory to Practice - Math You Can Use.







<< PreviousNext >>

How to Generate Odd Numbers in Visual Basic for Kids



What are Odd Numbers? | Maths Explanation for VB.Net Kids

Odd numbers are numbers that are not divisible by 2.

They include:

1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, ...

In this beginner-friendly Maths Visual Basic tutorial for kids, we'll explore how to list odd numbers using VB.Net loops and conditions — perfect for primary school students learning to code.
To generate odd numbers in Visual Basic, we use a 'for' loop combined with a conditional statement. This simple Visual Basic exercise will help you understand number patterns and logic.

Create a new VB.Net class file; Project, Add Class.
Call it oddNumbers.vb.
Optionally, Create a new VB.Net module file; Project, Add Module.
Call it OddModule.vb.
Type out the adjoining Visual Basic (VB.Net) code for listing odd numbers.



Note: You can simply comment out the previous evenNumbers VB.Net object code from the main class or continue from where it stopped.



Code for Odd Number List with User Input in Visual Basic (VB.Net)

For a little more flexibility, let's add an input form to our VB.Net code for odd numbers.

All we need is a way to ask the user for input.
For this purpose, we'll use the Console.ReadLine() VB.Net library function.


So! Visual Basic Fun Practice Exercise - List Odd Numbers

As a fun practice exercise, feel free to try out your own boundary values, and see how the Visual Basic code lists the odd numbers between those boundary values.









<< PreviousNext >>