📄 assignmentoperators.vb
字号:
Option Strict OffImports SystemModule M1 Function Main() As Integer Dim x As Integer = 7 Dim y As Integer = 2 y += 3 x = y + 10 If y <> 5 Then Return 1 End If If x <> 15 Then Return 2 End If x += 9 If x <> 24 Then Return 3 End If Dim c As Byte = 3 Dim d As Byte = 5 d ^= c If d <> 125 Then System.Console.WriteLine("#A1 Assignment not proper") : Return 1 End If Dim s As Short = 5 Dim i As Integer = 400001 s <<= i If s <> 10 Then System.Console.WriteLine("#A2 Assignment not proper") : Return 1 End If End FunctionEnd Module
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -