VB 计算S=2^2!+3^2!
问题描述:
VB 计算S=2^2!+3^2!
答
s=13
LZ可以自己试试
Private Sub Form_Load()
s = 2 ^ 2!+ 3 ^ 2!
MsgBox s
End Sub
运行就看到结果了