Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,21 @@
|
|||
Sub Main()
|
||||
|
||||
Dim a = CInt(Console.ReadLine)
|
||||
Dim b = CInt(Console.ReadLine)
|
||||
|
||||
'Using if statements
|
||||
If a < b Then Console.WriteLine("a is less than b")
|
||||
If a = b Then Console.WriteLine("a equals b")
|
||||
If a > b Then Console.WriteLine("a is greater than b")
|
||||
|
||||
'Using Case
|
||||
Select Case a
|
||||
Case Is < b
|
||||
Console.WriteLine("a is less than b")
|
||||
Case b
|
||||
Console.WriteLine("a equals b")
|
||||
Case Is > b
|
||||
Console.WriteLine("a is greater than b")
|
||||
End Select
|
||||
|
||||
End Sub
|
||||
Loading…
Add table
Add a link
Reference in a new issue