PROGRAM KELILING JAJAR GENJANG


Nama : SRIWAHYUNI
NIM : 19010020

Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim a, b, hasil As Integer

        a = TextBox1.Text
        b = TextBox2.Text
        hasil = 2 * (a + b)
        TextBox3.Text = hasil
    End Sub
End Class

Komentar