全民一起VBA基础篇第三课:变量与常量

試著忘記壹切 提交于 2020-01-24 10:58:28

变量

在这里插入图片描述

Sub 加法变量()
i = Cells(2, 2)
Cells(i, 9) = Cells(i, 5) + Cells(i, 7) '利用变量来控制
End Sub

计算半径,面积和体积

Sub 求面积和体积()
Radius = Cells(4, 3)
r = Radius
Square = 4 * r * r * 3
Cells(4, 4) = Square
volume = 4 / 3 * r * r * r * 3
Cells(4, 5) = volume '大小写不敏感

End Sub

在这里插入图片描述

常量

Option Explicit '强制申明,变量只能用一次
Sub 求面积和体积()
Dim Radius, r, square, volume
Const pi = 3.14 '申明常量,不允许变动
Radius = Cells(4, 3)
r = Radius
square = 4 * r * r * pi
Cells(4, 4) = square
volume = 4 / 3 * r * r * r * pi
Cells(4, 5) = volume '大小写不敏感
End Sub

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!