Compare Integer value and output their relation : Integer « Data Types « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net » Data Types » IntegerScreenshots 
Compare Integer value and output their relation
Compare Integer value and output their relation
   
Imports System

public class MainClass
    Shared Sub Main()

       Dim valueOne As Integer = 10
       Dim valueTwo As Integer = 20
       Dim valueThree As Integer = 30

       Console.WriteLine("Testing valueOne against valueTwo...")
       If valueOne > valueTwo Then
          Console.WriteLine_
              "ValueOne: {0} larger than ValueTwo: {1}", _
               valueOne, valueTwo)
       End If

       Console.WriteLine("Testing valueThree against valueTwo...")
       If valueThree > valueTwo Then
          Console.WriteLine_
              "ValueThree: {0} larger than ValueTwo: {1}", _
               valueThree, valueTwo)
       End If
       Console.WriteLine("Testing is valueTwo > 15 (one line)...")
       If valueTwo > 15 Then Console.WriteLine("Yes it is")

    End Sub

End Class



           
         
    
    
  
Related examples in the same category
1.Integer Initialize and assignmentInteger Initialize and assignment
2.Integer calculationInteger calculation
3.Define and use Array IntegerDefine and use Array Integer
4.And, Or, Xor and Not on Integer And, Or, Xor and Not on Integer
5.Integer Value DemoInteger Value Demo
6.Integer: add, subtract, multiply and divideInteger: add, subtract, multiply and divide
7.Concatenate string and intConcatenate string and int
8.Append Integer data type values to a StringBuilder object.
9.Generic and nongeneric versions of the CompareTo method for Int16 value
10.Generic and nongeneric versions of the CompareTo method for Int32 value
11.Generic and nongeneric versions of the CompareTo method for Int64 value
12.Use the Sign(Integer) method to determine the sign of an Integer value and display it to the console.
13.Byte Structure Represents an 8-bit unsigned integer.
14.Convert Integer to Byte with CByte
15.Convert Integer to Byte with Convert
16.Parse a negative integer value
17.Int32 Structure Represents a 32-bit signed integer.
18.Integer variables
19.Int32 CompareTo Method
20.Int32 Equals Method
21.Int32.MaxValue Field Represents the largest possible value of an Int32. This field is constant.
22.Int32.Parse Method Converts string to 32-bit signed integer equivalent.
23.Int32.Parse Method (String, NumberStyles) Converts string to 32-bit signed integer equivalent.
24.Int32 Structure Represents a 32-bit signed integer.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.