Public Class Expressions Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ListBox1.Items.Add("10 + 3 = " & (10 + 3)) ListBox1.Items.Add("10 - 3 = " & (10 - 3)) ListBox1.Items.Add("10 * 3 = " & (10 * 3)) ListBox1.Items.Add("10 / 3 = " & (10 / 3)) ListBox1.Items.Add("10 \ 3 = " & (10 \ 3)) ListBox1.Items.Add("10 mod 3 = " & (10 Mod 3)) ListBox1.Items.Add("10 ^ 3 = " & (10 ^ 3)) ListBox1.Items.Add("10 < 3 = " & (10 < 3)) ListBox1.Items.Add("10 <= 3 = " & (10 <= 3)) ListBox1.Items.Add("10 = 3 = " & (10 = 3)) ListBox1.Items.Add("10 > 3 = " & (10 > 3)) ListBox1.Items.Add("10 >= 3 = " & (10 >= 3)) ListBox1.Items.Add("10 & 3 = " & (10 & 3)) End Sub End Class