VB 程序编写石头剪刀布小游戏 求高手帮忙

2024-11-25 02:24:07
推荐回答(1个)
回答1:

在代码页的最前面加入以下的2行:
Option Base 1
Dim x As Integer, y As Integer, z As Integer

另外,所有的以下部分要修改:
Text1.Text = ("电脑胜利 ") & x&(" 盘")
Text2.Text = ("你胜利 ") & y&(" 盘")
改为:
Text1.Text = "电脑胜利 " & x & " 盘"
Text2.Text = "你胜利 " & y & " 盘"