Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If TextBox1.Text < 100 Then
If TextBox2.Text < 100 Then
TextBox3.Text = Val(TextBox1.Text) - Val(TextBox2.Text)
End If
End If
End Sub
End Class
訂閱:
張貼留言 (Atom)
有努力、有嘗試,就會有收穫!
回覆刪除這一題是一般資訊相關科系大二、大三的教科書練習題,對您們來說,有點難,老師公佈參考答案前,鼓勵您們再試試,加油!
提示!
1、100位數不是100
2、可以用三個陣列來表示被減數、減數及有無借位
當然也可以試試其他方法
jack