Math: Min, Max, Exp, Ceil, Round and Log10
Module Module1 Sub Main() Console.WriteLine("Ceiling(1.1), Ceiling(0.9) = " & Math.Ceiling(1.1) & " " & Math.Ceiling(0.9)) Console.WriteLine("Exp(5) = " & Math.Exp(5)) Console.WriteLine("Log10(100) = " & Math.Log10(100)) Console.WriteLine("Max(1001, 100) = " & Math.Max(1001, 100)) Console.WriteLine("Min(1001, 100) = " & Math.Min(1001, 100)) Console.WriteLine("Floor(1.1), Floor(0.9) = " & Math.Floor(1.1) & " " & Math.Floor(0.9)) Console.WriteLine("Round(1.1), Round(0.9) = " & Math.Round(1.1) & " " & Math.Round(0.9)) End Sub End Module