-
INC
INC Variable |
変数を増やします。
変数は代入のターゲットにすることができますが、数値でなければなりません。
それは完全に同等です
Variable = Variable + 1 |
または、
Variable += 1 |
Examples
Dim X As Integer
X = 7
Inc X
Print X
8
Dim A As New Float[3, 3]
Dim X, Y As Integer
X = 2
Y = 1
A[X, Y] = Pi
Inc A[X, Y]
Print A[X, Y]
4.14159265359
これは、Gambasの端末形式の長い例です。
Static Public Sub Main()
Dim x As Float
Dim y As Float
Dim pos As Integer
Dim neg As Integer
Dim nul As Integer
pos = 0
neg = 0
nul = 0
For x = 1 To 100
y = Rnd(-5, 5)
Select Case Sgn(y)
Case 0
Inc nul
'nul = nul + 1と同じ
Case 1
Inc pos
Case -1
Inc neg
End Select
Next
Print nul, pos, neg
End
コメント
最新を表示する
NG表示方式
NGID一覧