Computer Science, asked by ksssanjay8268, 10 months ago

Write a program in a vb define the simple intrrest

Answers

Answered by praveenkumaryadav7
0

Explanation:

Private Sub Command1_Click()

Dim P As Integer, R As Integer, T As Integer, SI As Variant

P = Text1.Text

R = Text2.Text

T = Text3.Text

SI = P * R * T / 100

Text4.Text = SI

Text5.Text = P - SI

End Sub

Private Sub Command2_Click()

End

End Sub

Similar questions