这是另一个学校项目,我很难过,所以请帮忙。
我应该编写一个输出数字 1 到 100 的程序,但是有 4 个变量。当您为变量 1 输入一个值时,它会采用该数字的倍数并将其更改为您输入的变量字。
我的具体问题是如何让我的变量成为该值的倍数?
这就是我所拥有的……谢谢你的帮助。
公开课形式1
Private Sub lblDiscription_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblDiscription.Click
End Sub
Private Sub PictureBox1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
End Sub
Private Sub bntCounter_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles bntCounter.Click
Dim intCounter As Integer = 0
Dim intLeftMultiple As Integer = 1
Dim intRightMultiple As Integer = 1
Dim strLeftWord As String
Dim strRightWord As String
While intCounter < 101
lstDisplay.Items.Add(CStr(intCounter))
intCounter += 1
End If
End While
End Sub
Private Sub lblMiddle_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblMiddle.Click
End Sub
结束类
这就是我的 GUI 的样子。