發表文章

目前顯示的是 12月, 2020的文章

第16週Word貼到網頁+嵌入臉書到網頁

投入、陶醉與個性,她壓倒其他所有的舞者。 由 Robert Liu 發佈於  2020年12月18日 星期五

第十五週胡詠捷

利率y(rate) 期數n(nper) 金流m(pmt) 終值f(fv) 參考胡詠捷 金融市場 講義 胡詠捷學習HTML+CSS+JavaScript程式碼 在撰寫模式貼上WORD會有問題

第14週WORD VBApplication與 EXCEL VBApplication

圖片
  Dim n As Integer Dim spec As String Const period As Integer = 4 Const maxerror As Double = 0.0000001 Dim payment(period) As Double '廣域變數 4 維度的陣列 Private Sub CommandButton1_Click()   Dim a, b, c, f, gap As Double   Dim loopNumber As Integer   n = n + 1 '第幾次計算+1   a = 0     '報酬率0   b = 1     '報酬率1   gap = 10   loopNumber = 10   payment(0) = TextBox1.Value   payment(1) = TextBox2.Value   payment(2) = TextBox3.Value   payment(3) = TextBox4.Value   f = npv(a)   If f = 0 Then      Label9.Caption = 0   ElseIf f < 0 Then      Label9.Caption = "內部報酬率小於 0."   Else      Do While gap > mexerror And Abs(f) > maxerror And loopNumber < 100        loopNumber = loopNumber + 1        c = (a + b) / 2        f = npv(c)        If Abs(f) > maxerror And gap > maxerror Then           If f > 0 Then             a = c           Else             b = c             gap = b - a           End If         Else           Label9.Caption = c        End If      Loop   End If